File Coverage

blib/lib/Compress/Snappy.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Compress::Snappy;
2              
3 2     2   267758 use strict;
  2         5  
  2         95  
4 2     2   22 use warnings;
  2         4  
  2         141  
5              
6 2     2   15 use Exporter qw(import);
  2         4  
  2         74  
7 2     2   11 use XSLoader;
  2         20  
  2         321  
8              
9             our $VERSION = '0.25';
10             our $XS_VERSION = $VERSION;
11             $VERSION = eval $VERSION;
12              
13             XSLoader::load(__PACKAGE__, $XS_VERSION);
14              
15             our @EXPORT = qw(compress decompress uncompress);
16              
17              
18             1;
19              
20             __END__