1#!perl -T
2use 5.006;
3use strict;
4use warnings FATAL => 'all';
5use Test::More;
6
7unless ( $ENV{RELEASE_TESTING} ) {
8    plan( skip_all => "Author tests not required for installation" );
9}
10
11my $min_tcm = 0.9;
12eval "use Test::CheckManifest $min_tcm";
13plan skip_all => "Test::CheckManifest $min_tcm required" if $@;
14
15ok_manifest();
16