Alien-WiX-Version30

 view release on metacpan or  search on metacpan

xt/author/pod.t  view on Meta::CPAN

#!perl

# Test that the syntax of our POD documentation is valid

use strict;
use Test::More;

BEGIN {
	BAIL_OUT ('Perl version unacceptably old.') if ($] < 5.008001);
	use English qw(-no_match_vars);
	$OUTPUT_AUTOFLUSH = 1;
	$WARNING = 1;
}

my @MODULES = (
	'Pod::Simple 3.14',
	'Test::Pod 1.26',
);

# 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_files_ok();



( run in 0.699 second using v1.01-cache-2.11-cpan-13bb782fe5a )