File Coverage

blib/lib/Module/New/File/Script.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::Script;
2            
3 2     2   815 use strict;
  2         3  
  2         57  
4 2     2   8 use warnings;
  2         2  
  2         41  
5 2     2   7 use Module::New::File;
  2         3  
  2         12  
6            
7             file '{MAINFILE}' => content { return <<'EOT';
8             #!perl
9             use strict;
10             use warnings;
11             use Carp;
12            
13             EOT
14             };
15            
16             1;
17            
18             __END__