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   58118 use strict;
  2         4  
  2         87  
4 2     2   10 use warnings;
  2         4  
  2         73  
5              
6 2     2   9 use Exporter qw(import);
  2         11  
  2         65  
7 2     2   12 use XSLoader;
  2         3  
  2         185  
8              
9             our $VERSION = '0.24';
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__