This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl 5.003_06: [patch introduction and re-organisation]
[perl5.git] / t / lib / filepath.t
CommitLineData
1a3850a5
GA
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";