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   494 use strict;
  2         2  
  2         51  
4 2     2   6 use warnings;
  2         2  
  2         33  
5 2     2   6 use Module::New::File;
  2         1  
  2         9  
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__