Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/proc/self/root/usr/local/nvm/test/
Upload File :
Current File : //proc/thread-self/root/proc/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'
}