diff options
author | jake <jake@jakes-mail.top> | 2022-09-03 17:13:08 -0400 |
---|---|---|
committer | jake <jake@jakes-mail.top> | 2022-09-03 17:13:08 -0400 |
commit | 934fd7f7c56cb22173d32dcd7ffb1389cddd2011 (patch) | |
tree | e32f575f86e0dce69bfc4c02993ba64fe68c2a44 /t/manifest.t |
Diffstat (limited to 't/manifest.t')
-rw-r--r-- | t/manifest.t | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/t/manifest.t b/t/manifest.t new file mode 100644 index 0000000..1a5cca1 --- /dev/null +++ b/t/manifest.t @@ -0,0 +1,15 @@ +#!perl +use 5.010; +use strict; +use warnings; +use Test::More; + +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(); |