mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-12-18 05:40:07 +00:00
test that go_segment prints nothing if GOPATH is set but is not a subset of PWD
This commit is contained in:
parent
ac3307400d
commit
0519384d57
1 changed files with 11 additions and 0 deletions
|
@ -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 a new issue