Blame SOURCES/Package-Generator-1.106-old-Test::More.patch

318435
--- t/000-report-versions-tiny.t
318435
+++ t/000-report-versions-tiny.t
318435
@@ -1,12 +1,6 @@
318435
 use strict;
318435
 use warnings;
318435
-use Test::More 0.88;
318435
-# This is a relatively nice way to avoid Test::NoWarnings breaking our
318435
-# expectations by adding extra tests, without using no_plan.  It also helps
318435
-# avoid any other test module that feels introducing random tests, or even
318435
-# test plans, is a nice idea.
318435
-our $success = 0;
318435
-END { $success && done_testing; }
318435
+use Test::More tests => 1;
318435
 
318435
 # List our own version used to generate this
318435
 my $v = "\nGenerated by Dist::Zilla::Plugin::ReportVersions::Tiny v1.10\n";
318435
@@ -52,7 +46,7 @@ eval { $v .= pmver('Carp','any version')
318435
 eval { $v .= pmver('ExtUtils::MakeMaker','6.30') };
318435
 eval { $v .= pmver('Scalar::Util','any version') };
318435
 eval { $v .= pmver('Symbol','any version') };
318435
-eval { $v .= pmver('Test::More','0.96') };
318435
+eval { $v .= pmver('Test::More','0.47') };
318435
 eval { $v .= pmver('strict','any version') };
318435
 eval { $v .= pmver('warnings','any version') };
318435
 
318435
@@ -68,7 +62,6 @@ EOT
318435
 
318435
 diag($v);
318435
 ok(1, "we really didn't test anything, just reporting data");
318435
-$success = 1;
318435
 
318435
 # Work around another nasty module on CPAN. :/
318435
 no warnings 'once';
318435
--- xt/release/changes_has_content.t
318435
+++ xt/release/changes_has_content.t
318435
@@ -2,7 +2,6 @@
318435
 
318435
 use Test::More tests => 2;
318435
 
318435
-note 'Checking Changes';
318435
 my $changes_file = 'Changes';
318435
 my $newver = '1.106';
318435
 my $trial_token = '-TRIAL';
318435
@@ -14,8 +13,6 @@ SKIP: {
318435
     ok(_get_changes($newver), "$changes_file has content for $newver");
318435
 }
318435
 
318435
-done_testing;
318435
-
318435
 # _get_changes copied and adapted from Dist::Zilla::Plugin::Git::Commit
318435
 # by Jerome Quelin
318435
 sub _get_changes