t/manifest.t | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 13 | 17 | 76.4 |
branch | 1 | 4 | 25.0 |
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | n/a | ||
total | 18 | 25 | 72.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | #!perl -T | ||||||
2 | 1 | 1 | 18 | use 5.006; | |||
1 | 3 | ||||||
3 | 1 | 1 | 4 | use strict; | |||
1 | 1 | ||||||
1 | 16 | ||||||
4 | 1 | 1 | 4 | use warnings; | |||
1 | 1 | ||||||
1 | 19 | ||||||
5 | 1 | 1 | 337 | use Test::More; | |||
1 | 43831 | ||||||
1 | 7 | ||||||
6 | |||||||
7 | 1 | 50 | 62 | unless ( $ENV{RELEASE_TESTING} ) { | |||
8 | 1 | 4 | plan( skip_all => "Author tests not required for installation" ); | ||||
9 | } | ||||||
10 | |||||||
11 | 0 | 0 | my $min_tcm = 0.9; | ||||
12 | 0 | 0 | eval "use Test::CheckManifest $min_tcm"; | ||||
13 | 0 | 0 | 0 | plan skip_all => "Test::CheckManifest $min_tcm required" if $@; | |||
14 | |||||||
15 | 0 | 0 | ok_manifest(); |