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 31 32 33 34 35 36 37 38 39 40
|
#!/usr/bin/perl
use strict;
use warnings;
use Test::More;
use English qw(-no_match_vars);
if ( not $ENV{TEST_AUTHOR} ) {
my $msg =
'Author test. Set (export) $ENV{TEST_AUTHOR} to a true value to run.';
plan( skip_all => $msg );
}
eval 'use Test::Prereq::Build';
if ( $EVAL_ERROR ) {
my $msg = 'Test::Prereq::Build not installed; skipping';
plan( skip_all => $msg );
}
# workaround for the bugs of Test::Prereq::Build
my @skip_workaround = qw{
};
# These modules should not go into Build.PL
my @skip_devel_only = qw{
Test::Kwalitee
Test::Perl::Critic
Test::Prereq::Build
};
my @skip = (
@skip_workaround,
@skip_devel_only,
);
prereq_ok( undef, undef, \@skip );
|