Codebase list libpoe-component-sslify-perl / 2bad9a0 t / apocalypse.t
2bad9a0

Tree @2bad9a0 (Download .tar.gz)

apocalypse.t @2bad9a0raw · history · blame

#!/usr/bin/perl
use strict; use warnings;

use Test::More;
eval "use Test::Apocalypse";
if ( $@ ) {
	plan skip_all => 'Test::Apocalypse required for validating the distribution';
} else {
	# lousy hack for kwalitee
	require Test::NoWarnings; require Test::Pod; require Test::Pod::Coverage;
	is_apocalypse_here( {
		deny => qr/^(?:(?:OutdatedPrereq|Dependencie)s|ModuleUsed|Strict|Fixme|Pod_Spelling)$/,
	} );
}