aboutsummaryrefslogtreecommitdiffstats
path: root/perl/test/mkdir.t
blob: 90ec6f32449f40255691846bd60c8b239059e2d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl
use test::helper qw($_real $_point);
use Test::More;
plan tests => 3;
chdir($_point);
ok(mkdir("dir"),"mkdir");
ok(-d "dir","dir exists");
chdir($_real);
ok(-d "dir","dir really exists");
chdir($_point);
rmdir("dir");