mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-09-17 13:22:47 +00:00
Add nvm_tree_contains_path function
This commit is contained in:
27
test/fast/Unit tests/nvm_tree_contains_path
Executable file
27
test/fast/Unit tests/nvm_tree_contains_path
Executable file
@@ -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
|
||||
|
Reference in New Issue
Block a user