diff options
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: $!"); |