test failure: lib/ExtUtils/t/Installed.t
[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}
11chdir 't';
12
13
14use strict;
15use Test::More tests => 2;
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');