2 # Copyright (C) 2001-2006, Parrot Foundation.
7 use lib qw( . lib ../lib ../../lib );
10 use ExtUtils::Manifest;
14 t/distro/manifest.t - check sanity of the MANIFEST file
18 % prove t/distro/manifest.t
22 Checks that the distribution and the MANIFEST file agree.
26 ok( -e $ExtUtils::Manifest::MANIFEST, 'MANIFEST exists' );
28 ok( -e $ExtUtils::Manifest::MANIFEST . '.SKIP', 'MANIFEST.SKIP exists' );
30 diag "this may take a while...";
32 $ExtUtils::Manifest::Quiet = 1;
34 my @missing = ExtUtils::Manifest::manicheck();
35 ok( !@missing, 'manicheck()' )
36 or diag("Missing files:\n\t@missing");
38 # remember to change the number of tests :-)
39 BEGIN { plan tests => 3; }
43 # cperl-indent-level: 4
46 # vim: expandtab shiftwidth=4: