line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Module::New::File::PodCoverageTest; |
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
649
|
use strict; |
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
73
|
|
4
|
2
|
|
|
2
|
|
8
|
use warnings; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
42
|
|
5
|
2
|
|
|
2
|
|
7
|
use Module::New::File; |
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
11
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
file 'xt/99_podcoverage.t' => content { return <<'EOT'; |
8
|
|
|
|
|
|
|
use strict; |
9
|
|
|
|
|
|
|
use warnings; |
10
|
|
|
|
|
|
|
use Test::More; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
eval "use Test::Pod::Coverage 1.04"; |
13
|
|
|
|
|
|
|
plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@; |
14
|
|
|
|
|
|
|
plan skip_all => 'set RELEASE_TESTING to enable this test' unless $ENV{RELEASE_TESTING}; |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
all_pod_coverage_ok(); |
17
|
|
|
|
|
|
|
EOT |
18
|
|
|
|
|
|
|
}; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
1; |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
__END__ |