diff options
author | Jason Hutchinson <zikes@zikes.me> | 2017-04-19 08:11:54 +0300 |
---|---|---|
committer | Jason Hutchinson <zikes@zikes.me> | 2017-04-19 08:11:54 +0300 |
commit | 0519384d57cc019ca6df48940483a14b94e3d57f (patch) | |
tree | 7faf60474edb00c0ed91c6f67a1df17653315ac7 | |
parent | ac3307400d06c98205e84823b913f40ac584680e (diff) |
test that go_segment prints nothing if GOPATH is set but is not a subset of PWD
-rwxr-xr-x | test/segments/go_version.spec | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/segments/go_version.spec b/test/segments/go_version.spec index a085f3b3..3bbad1be 100755 --- a/test/segments/go_version.spec +++ b/test/segments/go_version.spec @@ -35,6 +35,17 @@ function testGo() { unalias go } +function testGoSegmentPrintsNothingIfNotInGopath() { + alias go=mockGo + POWERLEVEL9K_CUSTOM_WORLD='echo world' + POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(custom_world go_version) + + assertEquals "%K{white} %F{black}world %k%F{white}%f " "$(build_left_prompt)" + + unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS + unset POWERLEVEL9K_CUSTOM_WORLD +} + function testGoSegmentPrintsNothingIfGoIsNotAvailable() { alias go=noGo POWERLEVEL9K_CUSTOM_WORLD='echo world' |