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_specs.fish

18 lines
342 B
Fish

function run_specs
# Run each describe function
for describe in (functions -n | grep describe_)
eval $describe
end
# Run before all block
functions -q before_all; and before_all
# Run tests
for test in (functions -n | grep it_)
run_spec $test
end
# Run after all block
functions -q after_all; and after_all
end