1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More tests => 2;
use Test::Requires qw( prefork );
use lib 't';
use Utils;
##############################################################
# Tests compilation of Module::ScanDeps
##############################################################
BEGIN { use_ok( 'Module::ScanDeps' ); }
##############################################################
# Tests static dependency scanning with the prefork module.
# This was broken until Module::ScanDeps 0.85
##############################################################
my $root = "t/data/prefork.pl";
my @deps = qw(
Carp.pm Config.pm Exporter.pm
strict.pm warnings.pm prefork.pm less.pm
);
# Functional i/f
my $rv = scan_deps($root);
check_rv($rv, [$root], \@deps);
|