File Coverage

blib/lib/Module/New/File/PodCoverageTest.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Module::New::File::PodCoverageTest;
2            
3 2     2   854 use strict;
  2         3  
  2         57  
4 2     2   9 use warnings;
  2         4  
  2         61  
5 2     2   9 use Module::New::File;
  2         4  
  2         12  
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__