You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
oh-my-fish/plugins/fish-spec/spec/expect.spec.fish

15 lines
286 B
Fish

import plugins/fish-spec
function describe_expect
function before_each
set -e result
end
function it_is_false_when_comparison_does_not_exist
echo (expect true --invalid-comparison; set result $status) >/dev/null
expect $result --to-equal 1
end
end
spec.run $argv