File Coverage

blib/lib/Module/New/File/Readme.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::Readme;
2              
3 2     2   641 use strict;
  2         4  
  2         90  
4 2     2   8 use warnings;
  2         4  
  2         46  
5 2     2   7 use Module::New::File;
  2         2  
  2         11  
6              
7             file 'README' => content { return <<'EOT';
8             <%= $c->distname %>
9              
10             INSTALLATION
11              
12             To install this module, run the following commands:
13              
14             perl Makefile.PL
15             make
16             make test
17             make install
18              
19             COPYRIGHT AND LICENSE
20              
21             Copyright (C) <%= $c->date->year %> <%= $c->config('author') %>
22              
23             <%= $c->license->notice %>
24             EOT
25             };
26              
27             1;
28              
29             __END__