File Coverage

blib/lib/Compress/Stream/Zstd.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Compress::Stream::Zstd;
2 6     6   698718 use 5.008001;
  6         29  
3 6     6   38 use strict;
  6         13  
  6         253  
4 6     6   34 use warnings;
  6         27  
  6         480  
5 6     6   51 use Exporter 'import';
  6         31  
  6         642  
6              
7             our $VERSION = "0.207";
8              
9             our @EXPORT = qw(
10             compress
11             decompress
12             uncompress
13             ZSTD_VERSION_NUMBER
14             ZSTD_VERSION_STRING
15             ZSTD_MAX_CLEVEL
16             ZSTD_MIN_CLEVEL
17             );
18              
19 6     6   42 use XSLoader;
  6         13  
  6         445  
20             XSLoader::load(__PACKAGE__, $VERSION);
21              
22             1;
23             __END__