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   52551 use strict;
  2         4  
  2         83  
4 2     2   11 use warnings;
  2         4  
  2         67  
5              
6 2     2   10 use Exporter qw(import);
  2         17  
  2         59  
7 2     2   12 use XSLoader;
  2         2  
  2         244  
8              
9             our $VERSION = '0.23';
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__