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/run_spec.fish

14 lines
299 B
Fish

function run_spec -a test
functions -q before_each; and before_each
eval $test
functions -q after_each; and after_each
end
function run_spec._.results.assertion_success -e assertion_success
printf '.'
end
function run_spec._.results.assertion_failure -e assertion_failure
echo $argv
end