use
5.010_001;
use
strict;
use
warnings;
use
Test::More;
#
# We use Test::More::UTF8 to enable UTF-8 on Test::Builder
# handles (failure_output, todo_output, and output) created
# by Test::More. Requires Test::Simple 1.302210+, and seems
# to eliminate the following error on some CPANTs builds:
#
# > Can't locate object method "e" via package "warnings"
#
use
Test::More::UTF8;
unless
(
$ENV
{RELEASE_TESTING} ) {
plan(
skip_all
=>
"Author tests not required for installation"
);
}
my
$min_tcm
= 0.9;
eval
"use Test::CheckManifest $min_tcm"
;
plan
skip_all
=>
"Test::CheckManifest $min_tcm required"
if
$@;
ok_manifest();