File Coverage

blib/lib/Data/Undump.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Data::Undump;
2              
3 4     4   543114 use strict;
  4         11  
  4         128  
4 4     4   21 use warnings;
  4         7  
  4         587  
5              
6             require Exporter;
7              
8             our @ISA = qw(Exporter);
9              
10             our @EXPORT_OK = qw( undump );
11             our %EXPORT_TAGS = ( 'all' => \@EXPORT_OK );
12             our @EXPORT = qw(undump);
13              
14             our $VERSION = '0.15';
15              
16             require XSLoader;
17             XSLoader::load('Data::Undump', $VERSION);
18              
19             1;
20             __END__