File Coverage

blib/lib/Shipwright/Util/PatchModuleBuild.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 6 66.6
pod 0 2 0.0
total 16 20 80.0


line stmt bran cond sub pod time code
1             package Shipwright::Util::PatchModuleBuild;
2 1     1   1346 use strict;
  1         3  
  1         26  
3 1     1   5 use warnings;
  1         2  
  1         27  
4              
5             sub import {
6            
7 1     1   323 use Module::Build;
  1         39564  
  1         8  
8 1     1   32 no warnings qw'redefine';
  1         1  
  1         72  
9       0 0   sub Module::Build::Base::ACTION_manpages {} ## no critic
10       0 0   sub Module::Build::Base::ACTION_docs {} ## no critic
11              
12             }
13              
14              
15             1;
16              
17             __END__