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/writemakefile_args.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/writemakefile_args.t')
-rw-r--r-- | lib/ExtUtils/t/writemakefile_args.t | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/ExtUtils/t/writemakefile_args.t b/lib/ExtUtils/t/writemakefile_args.t index f4b4daf6e3..a19a5ee644 100644 --- a/lib/ExtUtils/t/writemakefile_args.t +++ b/lib/ExtUtils/t/writemakefile_args.t @@ -14,10 +14,11 @@ BEGIN { } use strict; -use Test::More tests => 13; +use Test::More tests => 16; use TieOut; use MakeMaker::Test::Utils; +use MakeMaker::Test::Setup::BFD; use ExtUtils::MakeMaker; @@ -25,6 +26,12 @@ chdir 't'; perl_lib(); +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: $!"); |