Blame SOURCES/Dist-CheckConflicts-0.11-old-Test::More.patch

c8f1dd
--- t/also.t
c8f1dd
+++ t/also.t
c8f1dd
@@ -1,7 +1,7 @@
c8f1dd
 #!/usr/bin/env perl
c8f1dd
 use strict;
c8f1dd
 use warnings;
c8f1dd
-use Test::More;
c8f1dd
+use Test::More tests => 2;
c8f1dd
 use Test::Fatal;
c8f1dd
 use lib 't/lib/also';
c8f1dd
 
c8f1dd
@@ -29,4 +29,3 @@ use lib 't/lib/also';
c8f1dd
     );
c8f1dd
 }
c8f1dd
 
c8f1dd
-done_testing;
c8f1dd
--- t/basic.t
c8f1dd
+++ t/basic.t
c8f1dd
@@ -1,7 +1,7 @@
c8f1dd
 #!/usr/bin/env perl
c8f1dd
 use strict;
c8f1dd
 use warnings;
c8f1dd
-use Test::More;
c8f1dd
+use Test::More tests => 4;
c8f1dd
 use lib 't/lib/basic';
c8f1dd
 
c8f1dd
 {
c8f1dd
@@ -44,4 +44,3 @@ use lib 't/lib/basic';
c8f1dd
     );
c8f1dd
 }
c8f1dd
 
c8f1dd
-done_testing;
c8f1dd
--- t/conflicts.t
c8f1dd
+++ t/conflicts.t
c8f1dd
@@ -2,7 +2,7 @@
c8f1dd
 use strict;
c8f1dd
 use warnings;
c8f1dd
 
c8f1dd
-use Test::More;
c8f1dd
+use Test::More tests => 12;
c8f1dd
 use Test::Fatal;
c8f1dd
 use lib 't/lib/conflicts';
c8f1dd
 
c8f1dd
@@ -109,4 +109,3 @@ use lib 't/lib/conflicts';
c8f1dd
     ;
c8f1dd
 }
c8f1dd
 
c8f1dd
-done_testing;
c8f1dd
--- t/dist.t
c8f1dd
+++ t/dist.t
c8f1dd
@@ -1,7 +1,7 @@
c8f1dd
 #!/usr/bin/env perl
c8f1dd
 use strict;
c8f1dd
 use warnings;
c8f1dd
-use Test::More;
c8f1dd
+use Test::More tests => 12;
c8f1dd
 use Test::Fatal;
c8f1dd
 use lib 't/lib/dist';
c8f1dd
 
c8f1dd
@@ -73,4 +73,3 @@ use lib 't/lib/dist';
c8f1dd
     is(Bar::Conflicts::Bad->dist, 'Bar', "correct dist");
c8f1dd
 }
c8f1dd
 
c8f1dd
-done_testing;
c8f1dd
--- t/merge.t
c8f1dd
+++ t/merge.t
c8f1dd
@@ -1,7 +1,7 @@
c8f1dd
 #!/usr/bin/env perl
c8f1dd
 use strict;
c8f1dd
 use warnings;
c8f1dd
-use Test::More;
c8f1dd
+use Test::More tests => 1;
c8f1dd
 use lib 't/lib/merge';
c8f1dd
 
c8f1dd
 {
c8f1dd
@@ -18,4 +18,3 @@ use lib 't/lib/merge';
c8f1dd
     );
c8f1dd
 }
c8f1dd
 
c8f1dd
-done_testing;
c8f1dd
--- t/runtime.t
c8f1dd
+++ t/runtime.t
c8f1dd
@@ -1,7 +1,7 @@
c8f1dd
 #!/usr/bin/env perl
c8f1dd
 use strict;
c8f1dd
 use warnings;
c8f1dd
-use Test::More;
c8f1dd
+use Test::More tests => 7;
c8f1dd
 use lib 't/lib/runtime';
c8f1dd
 
c8f1dd
 use Module::Runtime 'require_module';
c8f1dd
@@ -46,4 +46,3 @@ is(scalar(grep { ref($_) eq 'ARRAY' && @
c8f1dd
    1,
c8f1dd
    "only installed one \@INC hook");
c8f1dd
 
c8f1dd
-done_testing;
c8f1dd
--- t/warn.t
c8f1dd
+++ t/warn.t
c8f1dd
@@ -1,7 +1,7 @@
c8f1dd
 #!/usr/bin/env perl
c8f1dd
 use strict;
c8f1dd
 use warnings;
c8f1dd
-use Test::More;
c8f1dd
+use Test::More tests => 1;
c8f1dd
 use lib 't/lib/warn';
c8f1dd
 
c8f1dd
 {
c8f1dd
@@ -13,4 +13,3 @@ use lib 't/lib/warn';
c8f1dd
     is($warning, '', "we don't see warnings from loaded modules");
c8f1dd
 }
c8f1dd
 
c8f1dd
-done_testing;
c8f1dd
--- xt/release/no-tabs.t
c8f1dd
+++ xt/release/no-tabs.t
c8f1dd
@@ -3,7 +3,7 @@ use warnings;
c8f1dd
 
c8f1dd
 # this test was generated with Dist::Zilla::Plugin::NoTabsTests 0.06
c8f1dd
 
c8f1dd
-use Test::More 0.88;
c8f1dd
+use Test::More tests => 1;
c8f1dd
 use Test::NoTabs;
c8f1dd
 
c8f1dd
 my @files = (
c8f1dd
@@ -11,4 +11,3 @@ my @files = (
c8f1dd
 );
c8f1dd
 
c8f1dd
 notabs_ok($_) foreach @files;
c8f1dd
-done_testing;