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.012002';
4 2     2   55710 use 5.010_001;
  2         12  
5 2     2   12 use strict;
  2         3  
  2         59  
6 2     2   11 use warnings;
  2         11  
  2         73  
7 2     2   12 use vars qw($VERSION);
  2         5  
  2         123  
8              
9 2     2   13 use base qw(XSLoader);
  2         16  
  2         277  
10 2     2   13 use Exporter qw(import);
  2         3  
  2         176  
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__