test that go_segment prints nothing if GOPATH is set but is not a subset of PWD
parent
ac3307400d
commit
0519384d57
|
@ -35,6 +35,17 @@ function testGo() {
|
||||||
unalias go
|
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() {
|
function testGoSegmentPrintsNothingIfGoIsNotAvailable() {
|
||||||
alias go=noGo
|
alias go=noGo
|
||||||
POWERLEVEL9K_CUSTOM_WORLD='echo world'
|
POWERLEVEL9K_CUSTOM_WORLD='echo world'
|
||||||
|
|
Loading…
Reference in New Issue