summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <steve.m.hay@googlemail.com>2015-03-12 08:00:26 +0000
committerSteve Hay <steve.m.hay@googlemail.com>2015-03-12 08:00:26 +0000
commit0303e43f688552f0e4d3d138601b49e9ba6d5f2f (patch)
treee682008115c070d5b415ad86af43cb6d59ba4d7e
parent3d50185de85a756293c9c3954114bd5c2d08a460 (diff)
downloadperl-0303e43f688552f0e4d3d138601b49e9ba6d5f2f.tar.gz
Remove another stray Test::Simple file that is listed as EXCLUDED
-rw-r--r--MANIFEST1
-rw-r--r--cpan/Test-Simple/t/xxx-changes_updated.t20
2 files changed, 0 insertions, 21 deletions
diff --git a/MANIFEST b/MANIFEST
index ed39d59cd6..2652ab025d 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -2470,7 +2470,6 @@ cpan/Test-Simple/t/useing.t
cpan/Test-Simple/t/use_ok.t
cpan/Test-Simple/t/utf8.t
cpan/Test-Simple/t/versions.t
-cpan/Test-Simple/t/xxx-changes_updated.t
cpan/Test/t/05_about_verbose.t See if Test works
cpan/Test/t/fail.t See if Test works
cpan/Test/t/mix.t See if Test works
diff --git a/cpan/Test-Simple/t/xxx-changes_updated.t b/cpan/Test-Simple/t/xxx-changes_updated.t
deleted file mode 100644
index d813d8a7c7..0000000000
--- a/cpan/Test-Simple/t/xxx-changes_updated.t
+++ /dev/null
@@ -1,20 +0,0 @@
-use strict;
-use warnings;
-use Test::More;
-use List::Util qw/first/;
-
-plan skip_all => "Only tested when releasing" unless $ENV{AUTHOR_TESTING};
-
-my $ver = $Test::More::VERSION;
-
-my $changes = first { -f $_ } './Changes', '../Changes';
-
-plan 'skip_all' => 'Could not find changes file'
- unless $changes;
-
-open(my $fh, '<', $changes) || die "Could not load changes file!";
-chomp(my $line = <$fh>);
-like($line, qr/^\Q$ver\E/, "Changes file is up to date");
-close($fh);
-
-done_testing;