56 lines
1.4 KiB
Diff
56 lines
1.4 KiB
Diff
|
--- Makefile.PL
|
||
|
+++ Makefile.PL
|
||
|
@@ -12,7 +12,7 @@ my %WriteMakefileArgs = (
|
||
|
"ABSTRACT" => "Check file names portability",
|
||
|
"AUTHOR" => "S\303\251bastien Aperghis-Tramoni <sebastien\@aperghis.net>, Alexander Hartmaier <abraxxa\@cpan.org>",
|
||
|
"BUILD_REQUIRES" => {
|
||
|
- "Test::More" => "0.98"
|
||
|
+ "Test::More" => "0.47"
|
||
|
},
|
||
|
"CONFIGURE_REQUIRES" => {
|
||
|
"ExtUtils::MakeMaker" => "6.30"
|
||
|
--- t/01basic.t
|
||
|
+++ t/01basic.t
|
||
|
@@ -1,5 +1,5 @@
|
||
|
use strict;
|
||
|
-use Test::More;
|
||
|
+use Test::More tests => 3;
|
||
|
|
||
|
require Test::Portability::Files;
|
||
|
|
||
|
@@ -7,5 +7,3 @@ require Test::Portability::Files;
|
||
|
ok( defined \&Test::Portability::Files::options ); #01
|
||
|
ok( defined \&Test::Portability::Files::run_tests ); #02
|
||
|
ok( defined \&Test::Portability::Files::test_name_portability ); #03
|
||
|
-
|
||
|
-done_testing;
|
||
|
\ No newline at end of file
|
||
|
--- t/release-cpan-changes.t
|
||
|
+++ t/release-cpan-changes.t
|
||
|
@@ -8,8 +8,7 @@ BEGIN {
|
||
|
}
|
||
|
|
||
|
|
||
|
-use Test::More;
|
||
|
+use Test::More;
|
||
|
eval 'use Test::CPAN::Changes';
|
||
|
plan skip_all => 'Test::CPAN::Changes required for this test' if $@;
|
||
|
changes_ok();
|
||
|
-done_testing();
|
||
|
--- t/release-test-version.t
|
||
|
+++ t/release-test-version.t
|
||
|
@@ -8,7 +8,7 @@ BEGIN {
|
||
|
|
||
|
use strict;
|
||
|
use warnings;
|
||
|
-use Test::More;
|
||
|
+use Test::More tests => 2;
|
||
|
|
||
|
# generated by Dist::Zilla::Plugin::Test::Version 0.002004
|
||
|
BEGIN { eval "use Test::Version; 1;" or die $@; }
|
||
|
@@ -27,4 +27,3 @@ push @imports, $params
|
||
|
Test::Version->import(@imports);
|
||
|
|
||
|
version_all_ok;
|
||
|
-done_testing;
|