File Coverage

lib/Module/New/File/Gitignore.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::Gitignore;
2            
3 1     1   851 use strict;
  1         2  
  1         32  
4 1     1   5 use warnings;
  1         1  
  1         24  
5 1     1   4 use Module::New::File;
  1         2  
  1         6  
6            
7             file '.gitignore' => content { return <<'EOT';
8             pm_to_blib
9             Makefile
10             /blib/
11             /.build/
12             /_build/
13             /.carton/
14             /local/
15             /Build
16             /tmp/
17             /nytprof/
18             /cover_db/
19             MYMETA.*
20             dll.*
21             *.old
22             *.bak
23             *.bat
24             *.o
25             *.obj
26             *.bs
27             *.swp
28             *.def
29             *.out
30             *~
31             EOT
32             };
33            
34             1;
35            
36             __END__