- Moved unused argc, temp variable into small scope.
[dragonfly.git] / contrib / perl5 / t / lib / filefind.t
1 #!./perl
2
3 BEGIN {
4     chdir 't' if -d 't';
5     @INC = '../lib';
6 }
7
8 print "1..2\n";
9
10 use File::Find;
11
12 # hope we will eventually find ourself
13 find(sub { print "ok 1\n" if $_ eq 'filefind.t'; }, ".");
14 finddepth(sub { print "ok 2\n" if $_ eq 'filefind.t'; }, ".");