nvm/test/fast/Unit tests/nvm_has_system_node

28 lines
372 B
Plaintext
Raw Normal View History

2014-07-15 02:46:34 +08:00
#!/bin/sh
. ../../../nvm.sh
2014-07-15 02:46:34 +08:00
cleanup () {
rm -rf "${NVM_DIR}/v0.1.2/node"
2014-07-15 02:46:34 +08:00
}
die () { echo $@ ; exit 1; }
mkdir "${NVM_DIR}/v0.1.2"
touch "${NVM_DIR}/v0.1.2/node"
2014-07-15 02:46:34 +08:00
nvm use 0.1.2
if command -v node; then
nvm_has_system_node
else
! nvm_has_system_node
fi
nvm deactivate /dev/null 2>&1
if command -v node; then
nvm_has_system_node
else
! nvm_has_system_node
fi