mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-01-24 15:10:44 +08:00
10 lines
216 B
Fish
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
|