Number-Phone

 view release on metacpan or  search on metacpan

t/manifest-contains-all-modules.t  view on Meta::CPAN

use strict;
use warnings;

use File::Find::Rule;

use Test::More;
use Test::Differences;

# This is a sanity-check to make sure that MANIFEST is up-to-date, as it is
# used by Makefile.PL to generate the list of files to install (see the PM
# section in Makefile.PL)

open(my $manifest_fh, '<', 'MANIFEST') || die("Couldn't open MANIFEST: $!\n");
my @manifest = sort grep { /^(lib.*\.pm|share.*\.db)$/ } map { chomp; $_ } <$manifest_fh>;
my @files = sort File::Find::Rule->file()->name('*.pm', '*.db')->in('share', 'lib');

eq_or_diff(
    \@manifest,
    \@files,
    "MANIFEST and lib/**/*.pm match",
    { filename_a => 'MANIFEST', filename_b => 'lib/**/*.pm' }
);

ok(!-f 'Number/Phone/StubCountry/001.pm', "There's no stub for country 001");

done_testing();



( run in 0.637 second using v1.01-cache-2.11-cpan-acf6aa7dc9e )