Skip to content

Commit

Permalink
zap now-broken Test::CheckManifest
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Feb 22, 2019
1 parent 4b0e647 commit 51533d6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
1 change: 0 additions & 1 deletion Makefile.PL
Expand Up @@ -30,7 +30,6 @@ WriteMakefile(
prereqs => {
develop => {
requires => {
'Test::CheckManifest' => '0.9',
'Test::Pod' => '1.22',
'Pod::Markdown' => 0,
},
Expand Down
9 changes: 4 additions & 5 deletions xt/manifest.t
@@ -1,13 +1,12 @@
use strict;
use warnings;
use Test::More;
use ExtUtils::Manifest;

unless ( $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
}
plan tests => 2;

my $min_tcm = 0.9;
eval "use Test::CheckManifest $min_tcm";
plan skip_all => "Test::CheckManifest $min_tcm required" if $@;

ok_manifest();
is_deeply [ ExtUtils::Manifest::manicheck() ], [], 'missing';
is_deeply [ ExtUtils::Manifest::filecheck() ], [], 'extra';

0 comments on commit 51533d6

Please sign in to comment.