Fix label on C<for(;;)> statement
[p5sagit/p5-mst-13.2.git] / t / lib / filepath.t
CommitLineData
1a3850a5 1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
8print "1..2\n";
9
10use File::Path;
11
12mkpath("foo/bar");
13
14print "not " unless -d "foo" && -d "foo/bar";
15print "ok 1\n";
16
17rmtree("foo");
18
19print "not " if -e "foo";
20print "ok 2\n";