Codebase list libpoe-component-sslify-perl / 3e2ffd9 t / apocalypse.t
3e2ffd9

Tree @3e2ffd9 (Download .tar.gz)

apocalypse.t @3e2ffd9raw · 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();
}