OS2 patches
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / zz_cleanup_dummy.t
CommitLineData
45bc4d3a 1#!/usr/bin/perl -w
2
3BEGIN {
4 if( $ENV{PERL_CORE} ) {
5 @INC = ('../lib', 'lib');
6 }
7 else {
8 unshift @INC, 't/lib';
9 }
10}
431b0fc4 11chdir($^O eq 'VMS' ? 'BFD_TEST_ROOT:[t]' : 't');
45bc4d3a 12
13
14use strict;
1df8d179 15use Test::More tests => 3;
45bc4d3a 16use File::Path;
17
18rmtree('Big-Dummy');
19ok(!-d 'Big-Dummy', 'Big-Dummy cleaned up');
20rmtree('Problem-Module');
21ok(!-d 'Problem-Module', 'Problem-Module cleaned up');
1df8d179 22rmtree('dummy-install');
23ok(!-d 'dummy-install', 'dummy-install cleaned up');