aboutsummaryrefslogtreecommitdiff
path: root/test/segments/node_version.spec
blob: 2fe3594ed09e4ac00f65cd8268990479a47b1648 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/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"
  # Load Powerlevel9k
  source powerlevel9k.zsh-theme
}

function testNodeVersionSegmentPrintsNothingWithoutNode() {
    local POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(node_version custom_world)
    local POWERLEVEL9K_CUSTOM_WORLD='echo world'
    alias node="nonode 2>/dev/null"

    assertEquals "%K{white} %F{black}world %k%F{white}%f " "$(build_left_prompt)"

    unset POWERLEVEL9K_CUSTOM_WORLD
    unalias node
}

function testNodeVersionSegmentWorks() {
    local POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(node_version)
    node() {
        echo "v1.2.3"
    }

    assertEquals "%K{green} %F{white%}⬢ %f%F{white}1.2.3 %k%F{green}%f " "$(build_left_prompt)"

    unfunction node
}

source shunit2/source/2.1/src/shunit2