#!/usr/bin/perl
use
Test::More;
eval
"use Test::Apocalypse"
;
if
( $@ ) {
plan
skip_all
=>
'Test::Apocalypse required for validating the distribution'
;
}
else
{
is_apocalypse_here( {
deny
=>
qr/^(?:ModuleUsed|Strict|Fixme|Pod_(?:Coverage|Spelling)|Synopsis)$/
,
} );
}