| Current Path : /proc/thread-self/root/proc/thread-self/root/usr/local/nvm/test/ |
| Current File : //proc/thread-self/root/proc/thread-self/root/usr/local/nvm/test/common.sh |
assert_ok() {
local FUNCTION=$1
shift
$($FUNCTION $@) || die '"'"$FUNCTION $@"'" should have succeeded, but failed'
}
assert_not_ok() {
local FUNCTION=$1
shift
! $($FUNCTION $@) || die '"'"$FUNCTION $@"'" should have failed, but succeeded'
}