File Coverage

lib/Module/New/File/TravisYml.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::TravisYml;
2            
3 1     1   1135 use strict;
  1         3  
  1         40  
4 1     1   5 use warnings;
  1         1  
  1         32  
5 1     1   6 use Module::New::File;
  1         1  
  1         6  
6            
7             file '.travis.yml' => content { return <<'EOT';
8             language: perl
9             perl:
10             - 5.8
11             - 5.10
12             - 5.12
13             - 5.14
14             - 5.16
15             - 5.18
16             - 5.20
17             EOT
18             };
19            
20             1;
21            
22             __END__