Alien-WiX-Version30
view release on metacpan or search on metacpan
xt/author/pod_coverage.t view on Meta::CPAN
#!perl
# Test that modules are documented by their pod.
use strict;
use Test::More;
use English qw(-no_match_vars);
BEGIN {
$OUTPUT_AUTOFLUSH = 1;
$WARNING = 1;
}
my @MODULES = (
'Pod::Coverage 0.20',
'Pod::Coverage::TrustPod 0.092830',
'Test::Pod::Coverage 1.08',
);
# Load the testing modules
foreach my $MODULE ( @MODULES ) {
eval "use $MODULE";
if ( $EVAL_ERROR ) {
BAIL_OUT( "Failed to load required release-testing module $MODULE" )
}
}
all_pod_coverage_ok( { coverage_class => 'Pod::Coverage::TrustPod' } );
( run in 0.361 second using v1.01-cache-2.11-cpan-13bb782fe5a )