Skip to content

Commit

Permalink
Add missing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mohawk2 committed Jun 15, 2015
1 parent 4cc5f6a commit f66b1b6
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions t/01-checkmanifest.t
@@ -0,0 +1,12 @@
#!perl -w

use Test::More tests => 1;
use ExtUtils::Manifest qw(manicheck);

my @missing_files = do {
local $SIG{__WARN__} = sub { }; # suppress "No such file:" messages
manicheck;
};

is_deeply \@missing_files, [], 'missing files from MANIFEST'
or map diag("$_\n"), @missing_files;

0 comments on commit f66b1b6

Please sign in to comment.