From 4f9a291a97d04b105e7ef2e09116176a7a293871 Mon Sep 17 00:00:00 2001 From: Jorge Bucaran Date: Wed, 21 Jan 2015 13:03:35 +0900 Subject: [PATCH] test runner should search fish_path for specs instead of * --- script/run-tests.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/run-tests.fish b/script/run-tests.fish index 6de5152..f60adc0 100755 --- a/script/run-tests.fish +++ b/script/run-tests.fish @@ -1,7 +1,7 @@ #!/usr/bin/env fish set -l result 0 -for test in (find * -type f -print | grep "spec.fish") +for test in (find $fish_path -type f -print | grep "spec.fish") fish $test $argv or set result 1 end