File Coverage

blib/lib/Module/New/File/PodTest.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::PodTest;
2              
3 2     2   887 use strict;
  2         4  
  2         69  
4 2     2   10 use warnings;
  2         698  
  2         58  
5 2     2   8 use Module::New::File;
  2         3  
  2         11  
6              
7             file 'xt/99_pod.t' => content { return <<'EOT';
8             use strict;
9             use warnings;
10             use Test::More;
11              
12             eval "use Test::Pod 1.18";
13             plan skip_all => 'Test::Pod 1.18 required' if $@;
14             plan skip_all => 'set RELEASE_TESTING to enable this test' unless $ENV{RELEASE_TESTING};
15             all_pod_files_ok();
16             EOT
17             };
18              
19             1;
20              
21             __END__