diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2016-02-18 02:39:55 +0300 |
---|---|---|
committer | Ben Hilburn <bhilburn@gmail.com> | 2016-02-18 02:39:55 +0300 |
commit | 64d81a2b36a705bbfe5be49e45695b059fa6a16a (patch) | |
tree | 589662162c57ef5bc14e709da8e62212168a3709 /test/segments/go_version.spec | |
parent | 2d196fa12ffcd579ea310ad676aac9af51e360b2 (diff) | |
parent | 7efc6e41873e6c329f3b66e43ec853a85f0ad5e9 (diff) |
Merge pull request #212 from dritter/unit_testing
Adding Unit Tests, supported by Travis-CI
Diffstat (limited to 'test/segments/go_version.spec')
-rwxr-xr-x | test/segments/go_version.spec | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/test/segments/go_version.spec b/test/segments/go_version.spec new file mode 100755 index 00000000..aa9f625d --- /dev/null +++ b/test/segments/go_version.spec @@ -0,0 +1,40 @@ +#!/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 mockGo() { + echo 'go version go1.5.3 darwin/amd64' +} + +function testGo() { + alias go=mockGo + POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(go_version) + + assertEquals "%K{green} %F{255}go1.5.3 %k%F{green}%f " "$(build_left_prompt)" + + unset POWERLEVEL9K_LEFT_PROMPT_ELEMENTS + unalias go +} + +function testGoSegmentPrintsNothingIfGoIsNotAvailable() { + alias go=noGo + 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 + unalias go +} + +source shunit2/source/2.1/src/shunit2 |