File Coverage

blib/lib/File/Raw.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             package File::Raw;
2              
3 28     28   4037482 use strict;
  28         52  
  28         977  
4 28     28   123 use warnings;
  28         108  
  28         2105  
5              
6             our $VERSION = '0.13';
7              
8 28     28   157 use DynaLoader;
  28         55  
  28         2274  
9              
10             our @ISA = ('DynaLoader');
11              
12 28     28 1 31518 sub dl_load_flags { 0x01 }
13              
14             __PACKAGE__->bootstrap($VERSION);
15              
16             1;
17              
18             __END__