oh-my-fish/pkg/fish-spec/functions/assert.fish
2015-12-19 11:46:09 +00:00

10 lines
216 B
Fish

function assert --wraps test
if builtin test $argv
emit assertion_success
else
set -l assertion_status $status
emit assertion_error (assert.error_message $argv)
return $assertion_status
end
end