d13b99
--- t/creative_commons.t
d13b99
+++ t/creative_commons.t
d13b99
@@ -10,6 +10,8 @@ BEGIN {
d13b99
   or plan skip_all => "requires Software::License::CCpack to test this";
d13b99
 }
d13b99
 
d13b99
+plan tests => 1;
d13b99
+
d13b99
 {
d13b99
   my $license = Software::License::CC_BY_1_0->new({holder => 'DUMMY'})->notice;
d13b99
   my $pod = "=head1 LICENSE\n\n$license\n=cut\n";
d13b99
@@ -19,4 +21,3 @@ BEGIN {
d13b99
   );
d13b99
 }
d13b99
 
d13b99
-done_testing;
d13b99
--- t/custom.t
d13b99
+++ t/custom.t
d13b99
@@ -2,7 +2,7 @@
d13b99
 use strict;
d13b99
 use warnings;
d13b99
 
d13b99
-use Test::More;
d13b99
+use Test::More tests => 8;
d13b99
 
d13b99
 use Software::License::Custom;
d13b99
 
d13b99
@@ -40,5 +40,3 @@ Well... this is only some sample text. I
d13b99
 
d13b99
 Yes, spanning more lines and more paragraphs.
d13b99
 END_OF_FULLTEXT
d13b99
-
d13b99
-done_testing;
d13b99
--- t/guess_license_from_pod.t
d13b99
+++ t/guess_license_from_pod.t
d13b99
@@ -3,7 +3,7 @@
d13b99
 use strict;
d13b99
 use warnings;
d13b99
 
d13b99
-use Test::More;
d13b99
+use Test::More tests => 1;
d13b99
 use Software::LicenseUtils;
d13b99
 
d13b99
 {
d13b99
@@ -32,4 +32,3 @@ LICENSE
d13b99
   );
d13b99
 }
d13b99
 
d13b99
-done_testing;
d13b99
--- t/guess_meta_license.t
d13b99
+++ t/guess_meta_license.t
d13b99
@@ -64,4 +64,3 @@ is_deeply(
d13b99
   [ ],
d13b99
 );
d13b99
 
d13b99
-done_testing;
d13b99
--- t/meta-names.t
d13b99
+++ t/meta-names.t
d13b99
@@ -2,13 +2,16 @@
d13b99
 use strict;
d13b99
 use warnings;
d13b99
 
d13b99
-use Test::More 0.88;
d13b99
+use Test::More;
d13b99
 
d13b99
 my @files = <lib/Software/License/*.pm>;
d13b99
 
d13b99
+plan tests => scalar @files;
d13b99
+
d13b99
 for my $module (@files) {
d13b99
   # It's retired.  Dunno if it's okay to be open_source.  Punt!
d13b99
-  next if $module =~ /Sun.pm$/;
d13b99
+  SKIP: {
d13b99
+  skip "Dunno if it's okay for Sun.pm to be open_source", 1 if $module =~ /Sun.pm$/;
d13b99
 
d13b99
   my $pkg = $module;
d13b99
   $pkg =~ s{^lib/}{};
d13b99
@@ -18,6 +21,5 @@ for my $module (@files) {
d13b99
   eval "require $pkg; 1";
d13b99
 
d13b99
   ok(defined $pkg->meta_name, "$pkg provide meta_name");
d13b99
+  }
d13b99
 }
d13b99
-
d13b99
-done_testing;
d13b99
--- t/two-dots.t
d13b99
+++ t/two-dots.t
d13b99
@@ -32,6 +32,8 @@ my @licenses = qw(
d13b99
     Zlib
d13b99
 );
d13b99
 
d13b99
+plan tests => 3 * scalar(@licenses);
d13b99
+
d13b99
 for my $l (@licenses) {
d13b99
     my $class = 'Software::License::' . $l;
d13b99
     require_ok($class);
d13b99
@@ -48,4 +50,3 @@ for my $l (@licenses) {
d13b99
     );
d13b99
 }
d13b99
 
d13b99
-done_testing;
d13b99
--- xt/release/changes_has_content.t
d13b99
+++ xt/release/changes_has_content.t
d13b99
@@ -2,7 +2,7 @@
d13b99
 
d13b99
 use Test::More tests => 2;
d13b99
 
d13b99
-note 'Checking Changes';
d13b99
+diag 'Checking Changes';
d13b99
 my $changes_file = 'Changes';
d13b99
 my $newver = '0.103012';
d13b99
 my $trial_token = '-TRIAL';
d13b99
@@ -14,8 +14,6 @@ SKIP: {
d13b99
     ok(_get_changes($newver), "$changes_file has content for $newver");
d13b99
 }
d13b99
 
d13b99
-done_testing;
d13b99
-
d13b99
 # _get_changes copied and adapted from Dist::Zilla::Plugin::Git::Commit
d13b99
 # by Jerome Quelin
d13b99
 sub _get_changes