aboutsummaryrefslogtreecommitdiff
path: root/test/segments
diff options
context:
space:
mode:
authorBen Hilburn <bhilburn@gmail.com>2017-05-23 04:55:49 +0300
committerGitHub <noreply@github.com>2017-05-23 04:55:49 +0300
commitb63bf001131a3fd295365f300d508ff2401fa9a7 (patch)
tree970667c55c41c7d4b7bd7b06243f69cc37f68c44 /test/segments
parent58d5027dba03410f6c24f8f1b54a5b1e8a3acb6a (diff)
parent55cf15ac41219e50d380adf9b5140b4cf9c259f5 (diff)
Merge pull request #473 from zikes/patch-1
Only show go_version segment if inside GOPATH
Diffstat (limited to 'test/segments')
-rwxr-xr-xtest/segments/go_version.spec46
1 files changed, 45 insertions, 1 deletions
diff --git a/test/segments/go_version.spec b/test/segments/go_version.spec
index aa9f625d..907dceb3 100755
--- a/test/segments/go_version.spec
+++ b/test/segments/go_version.spec
@@ -12,19 +12,63 @@ function setUp() {
}
function mockGo() {
- echo 'go version go1.5.3 darwin/amd64'
+ case "$1" in
+ 'version')
+ echo 'go version go1.5.3 darwin/amd64'
+ ;;
+ 'env')
+ echo "$HOME/go"
+ ;;
+ 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)
+ PWD="$HOME/go/src/github.com/bhilburn/powerlevel9k"
+
assertEquals "%K{green} %F{255}go1.5.3 %k%F{green}%f " "$(build_left_prompt)"
+ unset PWD
unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
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'
+ 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'