blob: 21e29a2d7fb49801736f3485ae68a93af1fb033b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
print "1..1\n";
use File::Find;
# hope we will eventually find ourself
find(sub { print "ok 1\n" if $_ eq 'filefind.t'; }, ".");
|