diff options
author | James E Keenan <jkeenan@cpan.org> | 2013-11-24 05:37:50 +0100 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2013-11-24 05:37:50 +0100 |
commit | 673d92672305ecff194d9f5f014741146a16e0c4 (patch) | |
tree | 53d5d76650ff35f47aeaf4bbbc7ed39f49fcdfde /dist | |
parent | 3407f4a92d7d9731d099e0290b68d7e983ff2497 (diff) | |
download | perl-673d92672305ecff194d9f5f014741146a16e0c4.tar.gz |
Require Test::More v0.88 to use done_testing in Spec.t.
Reported in https://rt.cpan.org/Ticket/Display.html?id=87574.
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Cwd/Makefile.PL | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dist/Cwd/Makefile.PL b/dist/Cwd/Makefile.PL index 1add839464..1b21de4c18 100644 --- a/dist/Cwd/Makefile.PL +++ b/dist/Cwd/Makefile.PL @@ -16,7 +16,9 @@ WriteMakefile 'Carp' => '0', 'File::Basename' => '0', 'Scalar::Util' => '0', - 'Test' => '0' + 'Test' => '0', + # done_testing() is used in dist/Cwd/t/Spec.t + 'Test::More' => 0.88, }, 'INSTALLDIRS' => 'perl', 'EXE_FILES' => [], |