diff --git a/tests/File discovery/Really ignore other files. b/tests/File discovery/Really ignore other files. new file mode 100755 index 0000000..a998350 --- /dev/null +++ b/tests/File discovery/Really ignore other files. @@ -0,0 +1,13 @@ +#!/bin/sh +tmp=$(mktemp -d) +mkdir -p $tmp/test + +touch $tmp/test/executable-not +echo '#!/usr/bin/env true' > $tmp/test/executable +chmod +x $tmp/test/executable + +$TEST_SHELL ../../urchin --tap $tmp/test/executable | grep SKIP +code=$? + +rm -r $tmp +test $code -ne 0