#!/usr/bin/perl
use
strict;
use
warnings;
use
Test::More;
if
( not
$ENV
{TEST_AUTHOR} ) {
my
$msg
=
'Author test. Set TEST_AUTHOR environment variable to a true value to run.'
;
plan(
skip_all
=>
$msg
);
}
eval
"use Test::CheckManifest 0.9"
;
plan
skip_all
=>
"Test::CheckManifest 0.9 required"
if
$@;
ok_manifest();