This commit is contained in:
chris 2026-05-14 15:25:40 -04:00
commit c7d27dd869
25 changed files with 785 additions and 0 deletions

15
t/manifest.t Normal file
View file

@ -0,0 +1,15 @@
#!perl
use 5.008003;
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();