#!perl -T
BEGIN {
unless
(
$ENV
{RELEASE_TESTING}) {
qq{1..0 # SKIP these tests are for release candidate testing\n}
;
exit
}
}
BEGIN {
unless
(
$ENV
{RELEASE_TESTING}) {
Test::More::plan(
skip_all
=>
'these tests are for release candidate testing'
);
}
}
use
Test::More;
eval
"use Test::CheckManifest 1.24"
;
plan
skip_all
=>
"Test::CheckManifest 1.24 required for testing MANIFEST"
if
$@;
ok_manifest();