v.1
This commit is contained in:
commit
c7d27dd869
25 changed files with 785 additions and 0 deletions
15
t/manifest.t
Normal file
15
t/manifest.t
Normal 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();
|
||||
Loading…
Add table
Add a link
Reference in a new issue