File Coverage

blib/lib/Module/New/File/Changes.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::Changes;
2              
3 2     2   594 use strict;
  2         3  
  2         69  
4 2     2   8 use warnings;
  2         3  
  2         48  
5 2     2   8 use Module::New::File;
  2         2  
  2         12  
6              
7             file 'Changes' => content { return <<'EOT';
8             Revision history for <%= $c->distname %>
9              
10             0.01 <%= $c->date->ymd('/') %>
11             - initial release
12             EOT
13             };
14              
15             1;
16              
17             __END__