![ljharb@gmail.com](/assets/img/avatar_default.png)
2 changed files with 40 additions and 0 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
#!/bin/sh |
||||
|
||||
cleanup () { |
||||
rm tmp/node |
||||
rmdir tmp |
||||
rm tmp2/node |
||||
rmdir tmp2 |
||||
} |
||||
die () { echo $@ ; cleanup; exit 1; } |
||||
|
||||
. ../../../nvm.sh |
||||
|
||||
mkdir -p tmp |
||||
touch -p tmp/node |
||||
mkdir -p tmp2 |
||||
touch -p tmp2/node |
||||
|
||||
nvm_tree_contains_path tmp tmp/node || die '"tmp" should contain "tmp/node"' |
||||
|
||||
nvm_tree_contains_path tmp tmp2/node && die '"tmp" should not contain "tmp2/node"' |
||||
|
||||
nvm_tree_contains_path tmp2 tmp2/node || die '"tmp2" should contain "tmp2/node"' |
||||
|
||||
nvm_tree_contains_path tmp2 tmp/node && die '"tmp2" should not contain "tmp/node"' |
||||
|
||||
cleanup |
||||
|
Loading…
Reference in new issue