oh-my-fish/script/run-tests.fish
2015-01-19 12:58:50 -02:00

9 lines
148 B
Fish
Executable File

#!/usr/bin/env fish
set -l result 0
for test in (find * -type f -print | grep "spec.fish")
fish $test $argv
or set result 1
end
exit $result