MM_Unix.pm : work around File::Find problem on VMS
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / zz_cleanup_dummy.t
1 #!/usr/bin/perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         @INC = ('../lib', 'lib');
6     }
7     else {
8         unshift @INC, 't/lib';
9     }
10 }
11 chdir 't';
12
13
14 use strict;
15 use Test::More tests => 2;
16 use File::Path;
17
18 rmtree('Big-Dummy');
19 ok(!-d 'Big-Dummy', 'Big-Dummy cleaned up');
20 rmtree('Problem-Module');
21 ok(!-d 'Problem-Module', 'Problem-Module cleaned up');