nvm/test/fast/Unit tests/nvm_has

12 lines
352 B
Plaintext
Raw Normal View History

2014-09-15 23:54:44 +08:00
#!/bin/sh
die () { echo "$@" ; exit 1; }
2014-09-15 23:54:44 +08:00
\. ../../../nvm.sh
2014-09-15 23:54:44 +08:00
nvm_has cat && type cat > /dev/null || die 'nvm_has locates "cat" properly'
[ "~$(nvm_has foobarbaz 2>&1)" = "~" ] || die "nvm_has does not suppress error output"
! nvm_has foobarbaz && ! type foobarbaz >/dev/null 2>&1 || die "nvm_has does not return a nonzero exit code when not found"