line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#!perl -T
|
2
|
1
|
|
|
1
|
|
16
|
use 5.006;
|
|
1
|
|
|
|
|
3
|
|
3
|
1
|
|
|
1
|
|
4
|
use strict;
|
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
17
|
|
4
|
1
|
|
|
1
|
|
3
|
use warnings;
|
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
19
|
|
5
|
1
|
|
|
1
|
|
345
|
use Test::More;
|
|
1
|
|
|
|
|
42450
|
|
|
1
|
|
|
|
|
6
|
|
6
|
|
|
|
|
|
|
|
7
|
1
|
50
|
|
|
|
65
|
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();
|