summaryrefslogtreecommitdiff
path: root/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_elixir.test.fish
diff options
context:
space:
mode:
Diffstat (limited to '.config/fisher/github.com/matchai/spacefish/tests/__sf_section_elixir.test.fish')
-rw-r--r--.config/fisher/github.com/matchai/spacefish/tests/__sf_section_elixir.test.fish110
1 files changed, 0 insertions, 110 deletions
diff --git a/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_elixir.test.fish b/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_elixir.test.fish
deleted file mode 100644
index 5c411f23..00000000
--- a/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_elixir.test.fish
+++ /dev/null
@@ -1,110 +0,0 @@
-source $DIRNAME/spacefish_test_setup.fish
-
-function setup
- spacefish_test_setup
- mock elixir -v 0 "echo \"Erlang/OTP 21 [erts-10.3.4] [source] [64-bit] [smp:8:8] [ds:8:8:10] [async-threads:1] [hipe] [dtrace]
-Elixir 1.8.1 (compiled with Erlang/OTP 21)\""
- set -x ELIXIR_VERSION 1.8.1
- mkdir -p /tmp/tmp-spacefish
- cd /tmp/tmp-spacefish
-end
-
-function teardown
- rm -rf /tmp/tmp-spacefish
-end
-
-test "Prints section when mix.exs is present"
- (
- touch /tmp/tmp-spacefish/mix.exs
-
- set_color --bold
- echo -n "via "
- set_color normal
- set_color --bold magenta
- echo -n "馃挧 v1.8.1"
- set_color normal
- set_color --bold
- echo -n " "
- set_color normal
- ) = (__sf_section_elixir)
-end
-
-test "Prints section when a *.ex file is present"
- (
- touch /tmp/tmp-spacefish/testfile.ex
-
- set_color --bold
- echo -n "via "
- set_color normal
- set_color --bold magenta
- echo -n "馃挧 v1.8.1"
- set_color normal
- set_color --bold
- echo -n " "
- set_color normal
- ) = (__sf_section_elixir)
-end
-
-test "Doesn't print the section when mix.exs and *.ex aren't present"
- () = (__sf_section_elixir)
-end
-
-test "Changing SPACEFISH_ELIXIR_SYMBOL changes the displayed character"
- (
- touch /tmp/tmp-spacefish/mix.exs
- set SPACEFISH_ELIXIR_SYMBOL "路 "
-
- set_color --bold
- echo -n "via "
- set_color normal
- set_color --bold magenta
- echo -n "路 v1.8.1"
- set_color normal
- set_color --bold
- echo -n " "
- set_color normal
- ) = (__sf_section_elixir)
-end
-
-test "Changing SPACEFISH_ELIXIR_PREFIX changes the character prefix"
- (
- touch /tmp/tmp-spacefish/mix.exs
- set sf_exit_code 0
- set SPACEFISH_ELIXIR_PREFIX 路
-
- set_color --bold
- echo -n "路"
- set_color normal
- set_color --bold magenta
- echo -n "馃挧 v1.8.1"
- set_color normal
- set_color --bold
- echo -n " "
- set_color normal
- ) = (__sf_section_elixir)
-end
-
-test "Changing SPACEFISH_ELIXIR_SUFFIX changes the character suffix"
- (
- touch /tmp/tmp-spacefish/mix.exs
- set sf_exit_code 0
- set SPACEFISH_ELIXIR_SUFFIX 路
-
- set_color --bold
- echo -n "via "
- set_color normal
- set_color --bold magenta
- echo -n "馃挧 v1.8.1"
- set_color normal
- set_color --bold
- echo -n "路"
- set_color normal
- ) = (__sf_section_elixir)
-end
-
-test "doesn't display the section when SPACEFISH_ELIXIR_SHOW is set to \"false\""
- (
- touch /tmp/tmp-spacefish/mix.exs
- set SPACEFISH_ELIXIR_SHOW false
- ) = (__sf_section_elixir)
-end