summaryrefslogtreecommitdiff
path: root/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_rust.test.fish
diff options
context:
space:
mode:
authorRoger Gonzalez <rogergonzalez21@gmail.com>2019-12-29 14:58:33 -0300
committerRoger Gonzalez <rogergonzalez21@gmail.com>2019-12-29 14:58:33 -0300
commitefb336a23b65a9a2d56889396b13c1757bdaf354 (patch)
tree234e40115f79a84c8a755df6fb932cc6797e36e1 /.config/fisher/github.com/matchai/spacefish/tests/__sf_section_rust.test.fish
Initial commit
Diffstat (limited to '.config/fisher/github.com/matchai/spacefish/tests/__sf_section_rust.test.fish')
-rw-r--r--.config/fisher/github.com/matchai/spacefish/tests/__sf_section_rust.test.fish125
1 files changed, 125 insertions, 0 deletions
diff --git a/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_rust.test.fish b/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_rust.test.fish
new file mode 100644
index 00000000..ea99a4a9
--- /dev/null
+++ b/.config/fisher/github.com/matchai/spacefish/tests/__sf_section_rust.test.fish
@@ -0,0 +1,125 @@
+source $DIRNAME/spacefish_test_setup.fish
+
+function setup
+ spacefish_test_setup
+ mock rustc --version 0 "echo \"rustc 1.28.0-nightly (9634041f0 2018-07-30)\""
+ mkdir -p /tmp/tmp-spacefish
+ cd /tmp/tmp-spacefish
+end
+
+function teardown
+ rm -rf /tmp/tmp-spacefish
+end
+
+test "Prints section when Cargo.toml is present"
+ (
+ touch /tmp/tmp-spacefish/Cargo.toml
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold red
+ echo -n "饾棩 v1.28.0"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_rust)
+end
+
+test "Prints section when a *.rs file is present"
+ (
+ touch /tmp/tmp-spacefish/testfile.rs
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold red
+ echo -n "饾棩 v1.28.0"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_rust)
+end
+
+test "Doesn't print the section when Cargo.toml and *.rs aren't present"
+ () = (__sf_section_rust)
+end
+
+test "Changing SPACEFISH_RUST_SYMBOL changes the displayed character"
+ (
+ touch /tmp/tmp-spacefish/Cargo.toml
+ set SPACEFISH_RUST_SYMBOL "路 "
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold red
+ echo -n "路 v1.28.0"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_rust)
+end
+
+test "Changing SPACEFISH_RUST_PREFIX changes the character prefix"
+ (
+ touch /tmp/tmp-spacefish/Cargo.toml
+ set sf_exit_code 0
+ set SPACEFISH_RUST_PREFIX 路
+
+ set_color --bold
+ echo -n "路"
+ set_color normal
+ set_color --bold red
+ echo -n "饾棩 v1.28.0"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_rust)
+end
+
+test "Changing SPACEFISH_RUST_SUFFIX changes the character suffix"
+ (
+ touch /tmp/tmp-spacefish/Cargo.toml
+ set sf_exit_code 0
+ set SPACEFISH_RUST_SUFFIX 路
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold red
+ echo -n "饾棩 v1.28.0"
+ set_color normal
+ set_color --bold
+ echo -n "路"
+ set_color normal
+ ) = (__sf_section_rust)
+end
+
+test "Prints verbose version when configured to do so"
+ (
+ touch /tmp/tmp-spacefish/Cargo.toml
+ set SPACEFISH_RUST_VERBOSE_VERSION true
+
+ set_color --bold
+ echo -n "via "
+ set_color normal
+ set_color --bold red
+ echo -n "饾棩 v1.28.0-nightly"
+ set_color normal
+ set_color --bold
+ echo -n " "
+ set_color normal
+ ) = (__sf_section_rust)
+end
+
+test "doesn't display the section when SPACEFISH_RUST_SHOW is set to \"false\""
+ (
+ touch /tmp/tmp-spacefish/Cargo.toml
+ set SPACEFISH_RUST_SHOW false
+ ) = (__sf_section_rust)
+end