diff options
author | Jason Hutchinson <zikes@zikes.me> | 2017-04-19 08:12:34 +0300 |
---|---|---|
committer | Jason Hutchinson <zikes@zikes.me> | 2017-04-19 08:12:34 +0300 |
commit | 55cf15ac41219e50d380adf9b5140b4cf9c259f5 (patch) | |
tree | e99b3c34f6b0c5c4936b62b36c6cfaf7e2010364 /test/segments | |
parent | 0519384d57cc019ca6df48940483a14b94e3d57f (diff) |
test that go_segment prints nothing if GOPATH is not set
Diffstat (limited to 'test/segments')
-rwxr-xr-x | test/segments/go_version.spec | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/segments/go_version.spec b/test/segments/go_version.spec index 3bbad1be..907dceb3 100755 --- a/test/segments/go_version.spec +++ b/test/segments/go_version.spec @@ -22,6 +22,17 @@ function mockGo() { esac } +function mockGoEmptyGopath() { + case "$1" in + 'version') + echo 'go version go1.5.3 darwin/amd64' + ;; + 'env') + echo "" + ;; + esac +} + function testGo() { alias go=mockGo POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(go_version) @@ -35,6 +46,18 @@ function testGo() { unalias go } +function testGoSegmentPrintsNothingIfEmptyGopath() { + alias go=mockGoEmptyGopath + 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 testGoSegmentPrintsNothingIfNotInGopath() { alias go=mockGo POWERLEVEL9K_CUSTOM_WORLD='echo world' |