File Coverage

_build/lib/MyModuleBuilder.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 13 14 92.8


line stmt bran cond sub pod time code
1             package MyModuleBuilder;
2 1     1   675 use Module::Build;
  1         92004  
  1         66  
3             our @ISA = qw(Module::Build);
4              
5 1     1   386 use Module::Build::Pluggable;
  1         11266  
  1         5  
6             sub resume {
7 1     1 0 11 my $class = shift;
8 1         30 my $self = $class->SUPER::resume(@_);
9 1         1105568 Module::Build::Pluggable->call_triggers_all('build', $self, [['Module::Build::Pluggable::CPANfile',undef]]);
10 1         21134 $self;
11             }
12            
13             1;