manifest.t 316 B

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