File Coverage

blib/lib/Shipwright/Util/PatchModuleBuild.pm
Criterion Covered Total %
statement 13 15 86.6
branch n/a
condition n/a
subroutine 5 7 71.4
pod 0 2 0.0
total 18 24 75.0


line stmt bran cond sub pod time code
1             package Shipwright::Util::PatchModuleBuild;
2 1     1   1593 use strict;
  1         3  
  1         33  
3 1     1   4 use warnings;
  1         2  
  1         29  
4              
5 1     1   19 sub import {
6            
7 1     1   590 use Module::Build;
  1         48071  
  1         9  
8 1     1   36 no warnings qw'redefine';
  1         2  
  1         93  
9 0     0 0   sub Module::Build::Base::ACTION_manpages {} ## no critic
10 0     0 0   sub Module::Build::Base::ACTION_docs {} ## no critic
11              
12             }
13              
14              
15             1;
16              
17             __END__