We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 50fb4f6 commit e17d673Copy full SHA for e17d673
.gitignore
@@ -1 +1,2 @@
1
/test/src/
2
+/test/home/
test/helper.sh
@@ -1,11 +1,14 @@
[[ -z "$SHUNIT2" ]] && SHUNIT2=/usr/share/shunit2/shunit2
[[ -n "$ZSH_VERSION" ]] && setopt shwordsplit
3
4
+export HOME="$PWD/test/home"
5
+export PATH="$PWD/bin:$PATH"
6
+
7
+mkdir -p "$HOME"
8
9
. ./share/ruby-install/ruby-install.sh
10
. ./share/ruby-install/functions.sh
11
-export PATH="$PWD/bin:$PATH"
-
12
function setUp() { return; }
13
function tearDown() { return; }
14
function oneTimeTearDown() { return; }
0 commit comments