| t/pod.t | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 11 | 15 | 73.3 |
| branch | 1 | 4 | 25.0 |
| condition | n/a | ||
| subroutine | 3 | 3 | 100.0 |
| pod | n/a | ||
| total | 15 | 22 | 68.1 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | #!perl | ||||||
| 2 | |||||||
| 3 | 1 | 1 | 4 | use strict; | |||
| 1 | 0 | ||||||
| 1 | 29 | ||||||
| 4 | 1 | 1 | 3 | use warnings; | |||
| 1 | 1 | ||||||
| 1 | 18 | ||||||
| 5 | 1 | 1 | 548 | use Test::More; | |||
| 1 | 13073 | ||||||
| 1 | 7 | ||||||
| 6 | |||||||
| 7 | 1 | 50 | 3 | unless ( $ENV{RELEASE_TESTING} ) { | |||
| 8 | 1 | 3 | plan( skip_all => "Author tests not required for installation" ); | ||||
| 9 | } | ||||||
| 10 | |||||||
| 11 | # Ensure a recent version of Test::Pod | ||||||
| 12 | 0 | 0 | my $min_tp = 1.22; | ||||
| 13 | 0 | 0 | eval "use Test::Pod $min_tp"; | ||||
| 14 | 0 | 0 | 0 | plan skip_all => "Test::Pod $min_tp required for testing POD" if $@; | |||
| 15 | |||||||
| 16 | 0 | 0 | all_pod_files_ok(); |