MyCPAN-Indexer
view release on metacpan or search on metacpan
t/compile.t view on Meta::CPAN
use File::Spec::Functions qw(catfile);
use Test::Output;
use vars qw( @scripts );
BEGIN {
open my($fh), "<", "MANIFEST" or die "Could not open MANIFEST! $!";
@scripts =
map { catfile( split m|/| ) }
grep { /\.pl$/ }
map { chomp; $_ }
<$fh>;
}
use Test::More tests => 2 * scalar @scripts;
foreach my $script ( @scripts )
{
ok( -e $script, "$script exists" );
( run in 2.643 seconds using v1.01-cache-2.11-cpan-71847e10f99 )