1
0

manifest.t 272 B

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