File Coverage

blib/lib/Module/New/File/Test.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::Test;
2            
3 2     2   1004 use strict;
  2         3  
  2         53  
4 2     2   7 use warnings;
  2         1  
  2         37  
5 2     2   6 use Module::New::File;
  2         3  
  2         10  
6            
7             file '{MAINFILE}' => content { return <<'EOT';
8             use strict;
9             use warnings;
10             use Test::More;
11            
12             done_testing;
13             EOT
14             };
15            
16             1;
17            
18             __END__