File Coverage

_build/lib/MyModuleBuilder.pm
Criterion Covered Total %
statement 3 6 50.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod n/a
total 4 8 50.0


line stmt bran cond sub pod time code
1             package MyModuleBuilder;
2 1     1   261794 use Module::Build;
  1         8  
  1         110  
3             @ISA = qw(Module::Build);
4              
5             sub _normalize_prereqs { # Dynamic config
6 0     0     my $self = shift; my $p = $self->SUPER::_normalize_prereqs; return $p;
  0            
  0            
7             }
8              
9             1;