This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[win32] Integrate mainline
[perl5.git] / t / lib / filefind.t
CommitLineData
1a3850a5
GA
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
8print "1..1\n";
9
10use File::Find;
11
12# hope we will eventually find ourself
13find(sub { print "ok 1\n" if $_ eq 'filefind.t'; }, ".");