File Coverage

inc/MyBuilder.pm
Criterion Covered Total %
statement 12 16 75.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 22 72.7


line stmt bran cond sub pod time code
1             package MyBuilder;
2 1     1   5 use base 'Module::Build';
  1         2  
  1         3990  
3              
4 1     1   163155 use warnings;
  1         2  
  1         24  
5 1     1   5 use strict;
  1         2  
  1         32  
6              
7              
8 1     1   14 use v5.10;
  1         3  
  1         131  
9              
10             sub new {
11 0     0 0   my ($self,@args) = @_;
12 0           $self->SUPER::new('pm_files'=>{map {$_ => $_} grep {! -d $_} <lib/*>,<lib/*/*>},@args);
  0            
  0            
13             }
14             1;