File Coverage

blib/lib/File/Raw/Archive.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package File::Raw::Archive;
2              
3 29     29   3039143 use 5.010;
  29         82  
4 29     29   119 use strict;
  29         40  
  29         486  
5 29     29   93 use warnings;
  29         42  
  29         1714  
6              
7             our $VERSION = '0.01';
8              
9 29     29   126 use base 'File::Raw';
  29         74  
  29         14055  
10              
11             require XSLoader;
12             XSLoader::load('File::Raw::Archive', $VERSION);
13              
14             1;
15              
16             __END__