File Coverage

lib/Module/New/Recipe/License.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Module::New::Recipe::License;
2            
3 1     1   467 use strict;
  1         1  
  1         24  
4 1     1   2 use warnings;
  1         1  
  1         16  
5 1     1   2 use Module::New::Recipe;
  1         1  
  1         3  
6 1     1   39 use Module::New::Command::Basic;
  1         1  
  1         3  
7            
8             available_options qw(license=s);
9            
10             flow {
11             guess_root;
12            
13             create_files('License');
14            
15             create_manifest;
16             };
17            
18             1;
19            
20             __END__