2018-07-18 20:21:27 +00:00
|
|
|
#!/usr/bin/env zsh
|
|
|
|
#vim:ft=zsh ts=2 sw=2 sts=2 et fenc=utf-8
|
|
|
|
|
|
|
|
# Required for shunit2 to run correctly
|
|
|
|
setopt shwordsplit
|
|
|
|
SHUNIT_PARENT=$0
|
|
|
|
|
|
|
|
function setUp() {
|
|
|
|
export TERM="xterm-256color"
|
|
|
|
}
|
|
|
|
|
|
|
|
function testNodeVersionSegmentPrintsNothingWithoutNode() {
|
2018-07-19 20:39:19 +00:00
|
|
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(node_version custom_world)
|
2018-07-18 20:21:27 +00:00
|
|
|
local POWERLEVEL9K_CUSTOM_WORLD='echo world'
|
|
|
|
alias node="nonode 2>/dev/null"
|
|
|
|
|
2018-07-25 05:52:06 +00:00
|
|
|
# Load Powerlevel9k
|
|
|
|
source powerlevel9k.zsh-theme
|
|
|
|
|
2018-07-18 20:21:27 +00:00
|
|
|
assertEquals "%K{white} %F{black}world %k%F{white}%f " "$(build_left_prompt)"
|
|
|
|
|
|
|
|
unalias node
|
|
|
|
}
|
|
|
|
|
|
|
|
function testNodeVersionSegmentWorks() {
|
2018-07-19 20:39:19 +00:00
|
|
|
local -a POWERLEVEL9K_LEFT_PROMPT_ELEMENTS
|
|
|
|
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(node_version)
|
2018-07-18 20:21:27 +00:00
|
|
|
node() {
|
|
|
|
echo "v1.2.3"
|
|
|
|
}
|
|
|
|
|
2018-07-25 05:52:06 +00:00
|
|
|
# Load Powerlevel9k
|
|
|
|
source powerlevel9k.zsh-theme
|
|
|
|
|
2018-07-18 20:21:27 +00:00
|
|
|
assertEquals "%K{green} %F{white%}⬢ %f%F{white}1.2.3 %k%F{green}%f " "$(build_left_prompt)"
|
|
|
|
|
|
|
|
unfunction node
|
|
|
|
}
|
|
|
|
|
2018-08-04 15:34:52 +00:00
|
|
|
source shunit2/shunit2
|