summaryrefslogtreecommitdiff
path: root/lib/ExtUtils/t/zz_cleanup_dummy.t
blob: 1b01f0a5d0218927529c3d1a18be01cd4d651f68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/perl -w

BEGIN {
    if( $ENV{PERL_CORE} ) {
        @INC = ('../lib', 'lib');
    }
    else {
        unshift @INC, 't/lib';
    }
}
chdir($^O eq 'VMS' ? 'BFD_TEST_ROOT:[t]' : 't');


use strict;
use Test::More tests => 3;
use File::Path;

rmtree('Big-Dummy');
ok(!-d 'Big-Dummy', 'Big-Dummy cleaned up');
rmtree('Problem-Module');
ok(!-d 'Problem-Module', 'Problem-Module cleaned up');
rmtree('dummy-install');
ok(!-d 'dummy-install', 'dummy-install cleaned up');