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   4503526 use strict;
  28         57  
  28         1112  
4 28     28   165 use warnings;
  28         129  
  28         2079  
5              
6             our $VERSION = '0.12';
7              
8 28     28   197 use DynaLoader;
  28         62  
  28         2682  
9              
10             our @ISA = ('DynaLoader');
11              
12 28     28 1 30248 sub dl_load_flags { 0x01 }
13              
14             __PACKAGE__->bootstrap($VERSION);
15              
16             1;
17              
18             __END__