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   1116264 use 5.008003;
  10         44  
4 10     10   59 use strict;
  10         69  
  10         344  
5 10     10   85 use warnings;
  10         15  
  10         823  
6              
7             our $VERSION = '0.03';
8              
9 10     10   60 use base 'File::Raw';
  10         33  
  10         6497  
10              
11             require XSLoader;
12             XSLoader::load('File::Raw::Base64', $VERSION);
13              
14             1;
15              
16             __END__