blob: 066607301bb058484da3cc77af3e62fdc9f7053b (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
source $DIRNAME/spacefish_test_setup.fish
function setup
spacefish_test_setup
mock cargo pkgid 0 "echo \"file:///Users/sirMerr/Development/test-rust#0.1.0\""
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 "is "
set_color normal
set_color --bold red
echo -n "📦 v0.1.0"
set_color normal
set_color --bold
echo -n " "
set_color normal
) = (__sf_section_package)
end
test "Prints section when package.json is present"
(
echo "{\"version\": \"1.0\"}" > /tmp/tmp-spacefish/package.json
set_color --bold
echo -n "is "
set_color normal
set_color --bold red
echo -n "📦 v1.0"
set_color normal
set_color --bold
echo -n " "
set_color normal
) = (__sf_section_package)
end
test "Changing SPACEFISH_PACKAGE_SUFFIX changes the character suffix"
(
touch /tmp/tmp-spacefish/Cargo.toml
set SPACEFISH_PACKAGE_SUFFIX ·
set_color --bold
echo -n "is "
set_color normal
set_color --bold red
echo -n "📦 v0.1.0"
set_color normal
set_color --bold
echo -n "·"
set_color normal
) = (__sf_section_package)
end
test "Does not print section when Cargo.toml or package.json is not present"
() = (__sf_section_package)
end
test "Doesn't display the section when SPACEFISH_PACKAGE_SHOW is set to \"false\""
(
touch /tmp/tmp-spacefish/Cargo.toml
set SPACEFISH_PACKAGE_SHOW false
) = (__sf_section_package)
end
|