oh-my-fish/pkg/fish-spec/functions/assert.fish

10 lines
216 B
Fish
Raw Normal View History

2015-12-08 05:39:10 +08:00
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