File Coverage

lib/Module/New/File/ShipIt.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::ShipIt;
2              
3 1     1   684 use strict;
  1         1  
  1         30  
4 1     1   4 use warnings;
  1         1  
  1         19  
5 1     1   4 use Module::New::File;
  1         0  
  1         5  
6              
7             file '.shipit' => content { return <<'EOT';
8             steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN
9              
10             # if directory, where the normal "make dist" puts its file.
11             #MakeDist.destination = ~/shipit-dist
12             #svn.tagpattern = ShipIt-%v
13             EOT
14             };
15              
16             1;
17              
18             __END__