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   7365 use Module::Build;
  1         165222  
  1         47  
3             @ISA = qw(Module::Build);
4              
5 1     1   917 use Module::Build::Pluggable;
  1         15480  
  1         7  
6             sub resume {
7 1     1 0 7 my $class = shift;
8 1         27 my $self = $class->SUPER::resume(@_);
9 1         1735570 Module::Build::Pluggable->call_triggers_all('build', $self, [['Module::Build::Pluggable::Repository',undef],['Module::Build::Pluggable::CPANfile',undef]]);
10 1         30624 $self;
11             }
12            
13             1;