diff options
Diffstat (limited to 't/lib/checktree.t')
-rw-r--r-- | t/lib/checktree.t | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/t/lib/checktree.t b/t/lib/checktree.t new file mode 100644 index 0000000000..b5426ca261 --- /dev/null +++ b/t/lib/checktree.t @@ -0,0 +1,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"; |