Skip to content
This repository has been archived by the owner on Jan 23, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Add 01-checkmanifest.t
  • Loading branch information
mohawk2 committed Jun 3, 2015
1 parent 7b6a6a1 commit 1ba1ceb
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 1ba1ceb

Please sign in to comment.