test that go_segment prints nothing if GOPATH is set but is not a subset of PWD

pull/22/head
Jason Hutchinson 2017-04-19 00:11:54 -05:00
parent ac3307400d
commit 0519384d57
1 changed files with 11 additions and 0 deletions

View File

@ -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'