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   686 use strict;
  2         5  
  2         83  
4 2     2   11 use warnings;
  2         3  
  2         49  
5 2     2   9 use Module::New::File;
  2         2  
  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__