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   596 use Module::Build;
  1         67071  
  1         42  
3             @ISA = qw(Module::Build);
4              
5 1     1   440 use Module::Build::Pluggable;
  1         9227  
  1         6  
6             sub resume {
7 1     1 0 3 my $class = shift;
8 1         15 my $self = $class->SUPER::resume(@_);
9 1         609927 Module::Build::Pluggable->call_triggers_all('build', $self, [['Module::Build::Pluggable::CPANfile',undef]]);
10 1         17782 $self;
11             }
12            
13             1;