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.012';
4 1     1   14417 use 5.010_001;
  1         2  
5 1     1   3 use strict;
  1         1  
  1         17  
6 1     1   3 use warnings;
  1         6  
  1         26  
7 1     1   3 use vars qw($VERSION);
  1         1  
  1         47  
8              
9 1     1   3 use base qw(XSLoader);
  1         1  
  1         110  
10 1     1   4 use Exporter qw(import);
  1         2  
  1         61  
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__