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   2257 use strict;
  2         3  
  2         76  
4 2     2   9 use warnings;
  2         2  
  2         54  
5 2     2   7 use Module::New::File;
  2         3  
  2         14  
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__