diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-11-04 21:43:10 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2003-11-04 21:43:10 +0000 |
commit | a7d1454b4299cd00e3e854ace9dde44c66a3c06a (patch) | |
tree | 905cc58b63a1668870112f4b8c6463fac042ee30 /lib/ExtUtils/t/prereq_print.t | |
parent | 8ee276f395d4f9dd37add3f06a414b9925af5591 (diff) | |
download | perl-a7d1454b4299cd00e3e854ace9dde44c66a3c06a.tar.gz |
Upgrade to ExtUtils::MakeMaker 6.19
p4raw-id: //depot/perl@21652
Diffstat (limited to 'lib/ExtUtils/t/prereq_print.t')
-rw-r--r-- | lib/ExtUtils/t/prereq_print.t | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/ExtUtils/t/prereq_print.t b/lib/ExtUtils/t/prereq_print.t index 78dc6e8e1f..05790e5834 100644 --- a/lib/ExtUtils/t/prereq_print.t +++ b/lib/ExtUtils/t/prereq_print.t @@ -13,8 +13,9 @@ BEGIN { use strict; use Config; -use Test::More tests => 8; +use Test::More tests => 11; use MakeMaker::Test::Utils; +use MakeMaker::Test::Setup::BFD; # 'make disttest' sets a bunch of environment variables which interfere # with our testing. @@ -29,6 +30,12 @@ perl_lib; $| = 1; +ok( setup_recurs(), 'setup' ); +END { + ok( chdir File::Spec->updir ); + ok( teardown_recurs(), 'teardown' ); +} + ok( chdir('Big-Dummy'), "chdir'd to Big-Dummy" ) || diag("chdir failed: $!"); |