blob: b5426ca261e70bc8229bd45e7fd1b6614bc6ac51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
print "1..1\n";
use File::CheckTree;
# We assume that we run from the perl "t" directory.
validate q{
lib -d || die
lib/checktree.t -f || die
};
print "ok 1\n";
|