4 use ExtUtils::Manifest 'fullcheck';
6 # by default EU::Manifest complains to STDERR, suppress that
7 $ExtUtils::Manifest::Quiet = 1;
9 my $dev_tests = -e '.svn';
11 plan tests => 2; # for local tests we check that there's no extras
14 plan tests => 1; # a user may have created junk playing with it
17 my ($missing, $extra) = fullcheck();
19 is_deeply($missing, [], "No files missing");
20 is_deeply($extra, [], "No extra files")