File Coverage

blib/lib/B/Hooks/OP/PPAddr.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1 1     1   26123 use strict;
  1         2  
  1         47  
2 1     1   5 use warnings;
  1         2  
  1         54  
3              
4             package B::Hooks::OP::PPAddr;
5              
6 1     1   1136 use parent qw/DynaLoader/;
  1         335  
  1         6  
7              
8             our $VERSION = '0.04_01';
9              
10 1     1 1 223 sub dl_load_flags { 0x01 }
11              
12             __PACKAGE__->bootstrap($VERSION);
13              
14             1;
15              
16             __END__