tweak RE for NaNQ? recognition
[p5sagit/p5-mst-13.2.git] / t / lib / filefind.t
old mode 100644 (file)
new mode 100755 (executable)
index 21e29a2..5d1492f
@@ -2,12 +2,13 @@
 
 BEGIN {
     chdir 't' if -d 't';
-    @INC = '../lib';
+    unshift @INC, '../lib';
 }
 
-print "1..1\n";
+print "1..2\n";
 
 use File::Find;
 
 # hope we will eventually find ourself
 find(sub { print "ok 1\n" if $_ eq 'filefind.t'; }, ".");
+finddepth(sub { print "ok 2\n" if $_ eq 'filefind.t'; }, ".");