-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtest_deactivate.sh
More file actions
executable file
·57 lines (45 loc) · 1.25 KB
/
test_deactivate.sh
File metadata and controls
executable file
·57 lines (45 loc) · 1.25 KB
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
# -*- mode: shell-script -*-
test_dir=$(cd $(dirname $0) && pwd)
source "$test_dir/setup.sh"
oneTimeSetUp() {
rm -rf "$WORKON_HOME"
mkdir -p "$WORKON_HOME"
load_wrappers
mkvirtualenv "env1"
}
oneTimeTearDown() {
rm -rf "$WORKON_HOME"
}
setUp () {
echo
rm -f "$TMPDIR/catch_output"
}
test_deactivate () {
workon env1
assertNotNull "$VIRTUAL_ENV"
deactivate
assertNull "$VIRTUAL_ENV"
assertFalse virtualenvwrapper_verify_active_environment
}
test_deactivate_hooks () {
workon env1
for t in pre post
do
echo "echo GLOBAL ${t}deactivate \$VIRTUALENVWRAPPER_LAST_VIRTUAL_ENV >> $TMPDIR/catch_output" > "$WORKON_HOME/${t}deactivate"
echo "echo ENV ${t}deactivate \$VIRTUALENVWRAPPER_LAST_VIRTUAL_ENV >> $TMPDIR/catch_output" > "$WORKON_HOME/env1/bin/${t}deactivate"
done
touch "$TMPDIR/catch_output"
deactivate
output=$(cat "$TMPDIR/catch_output")
expected="ENV predeactivate
GLOBAL predeactivate
ENV postdeactivate $WORKON_HOME/env1
GLOBAL postdeactivate $WORKON_HOME/env1"
assertSame "$expected" "$output"
for t in pre post
do
rm -f "$WORKON_HOME/env1/bin/${t}activate"
rm -f "$WORKON_HOME/${t}activate"
done
}
. "$test_dir/shunit2"