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