File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -23,16 +23,16 @@ setUp () {
23
23
}
24
24
25
25
test_single_package () {
26
- mkvirtualenv -i commandlineapp " env4" > /dev/null 2>&1
26
+ mkvirtualenv -i IPy " env4"
27
27
installed=$( pip freeze)
28
- assertTrue " CommandLineApp not found in $installed " " echo $installed | grep CommandLineApp "
28
+ assertTrue " IPy not found in $installed " " pip freeze | grep IPy "
29
29
}
30
30
31
31
test_multiple_packages () {
32
- mkvirtualenv -i commandlineapp -i csvcat " env4 " > /dev/null 2>&1
32
+ mkvirtualenv -i IPy -i WebTest " env5 "
33
33
installed=$( pip freeze)
34
- assertTrue " CommandLineApp not found in $installed " " echo $installed | grep CommandLineApp "
35
- assertTrue " csvcat not found in $installed " " echo $installed | grep csvcat "
34
+ assertTrue " IPy not found in $installed " " pip freeze | grep IPy "
35
+ assertTrue " WebTest not found in $installed " " pip freeze | grep WebTest "
36
36
}
37
37
38
38
. " $test_dir /shunit2"
You can’t perform that action at this time.
0 commit comments