line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Module::New::File::PodCoverageTest;
|
2
|
|
|
|
|
|
|
|
3
|
2
|
|
|
2
|
|
479
|
use strict;
|
|
2
|
|
|
|
|
2
|
|
|
2
|
|
|
|
|
48
|
|
4
|
2
|
|
|
2
|
|
7
|
use warnings;
|
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
34
|
|
5
|
2
|
|
|
2
|
|
8
|
use Module::New::File;
|
|
2
|
|
|
|
|
3
|
|
|
2
|
|
|
|
|
10
|
|
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__
|