File Coverage

blib/lib/Compress/LZ4Frame.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Compress::LZ4Frame;
2             # ABSTRACT: Compression package using the lz4frame library
3             $Compress::LZ4Frame::VERSION = '0.012001';
4 2     2   56660 use 5.010_001;
  2         8  
5 2     2   16 use strict;
  2         6  
  2         60  
6 2     2   14 use warnings;
  2         16  
  2         92  
7 2     2   16 use vars qw($VERSION);
  2         7  
  2         138  
8              
9 2     2   177 use base qw(XSLoader);
  2         19  
  2         323  
10 2     2   16 use Exporter qw(import);
  2         5  
  2         182  
11              
12             __PACKAGE__->load($VERSION);
13              
14             our @EXPORT_OK = qw(compress compress_checksum decompress looks_like_lz4frame);
15             our %EXPORT_TAGS = (all => \@EXPORT_OK);
16              
17             1;
18              
19             __END__