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/INST.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/INST.t')
-rw-r--r-- | lib/ExtUtils/t/INST.t | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/ExtUtils/t/INST.t b/lib/ExtUtils/t/INST.t index 3639acd11b..49938cb0d0 100644 --- a/lib/ExtUtils/t/INST.t +++ b/lib/ExtUtils/t/INST.t @@ -16,8 +16,9 @@ BEGIN { } use strict; -use Test::More tests => 23; +use Test::More tests => 26; use MakeMaker::Test::Utils; +use MakeMaker::Test::Setup::BFD; use ExtUtils::MakeMaker; use File::Spec; use TieOut; @@ -33,6 +34,12 @@ my $Makefile = makefile_name; my $Curdir = File::Spec->curdir; my $Updir = File::Spec->updir; +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: $!"); |