File Coverage

blib/lib/File/Raw/Base64.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::Base64;
2              
3 10     10   1086380 use 5.008003;
  10         44  
4 10     10   66 use strict;
  10         64  
  10         366  
5 10     10   54 use warnings;
  10         20  
  10         930  
6              
7             our $VERSION = '0.04';
8              
9 10     10   62 use base 'File::Raw';
  10         20  
  10         6304  
10              
11             require XSLoader;
12             XSLoader::load('File::Raw::Base64', $VERSION);
13              
14             1;
15              
16             __END__