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   348973 use 5.008001;
  6         59  
3 6     6   32 use strict;
  6         9  
  6         116  
4 6     6   26 use warnings;
  6         11  
  6         152  
5 6     6   28 use Exporter 'import';
  6         9  
  6         539  
6              
7             our $VERSION = "0.205";
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   39 use XSLoader;
  6         12  
  6         315  
20             XSLoader::load(__PACKAGE__, $VERSION);
21              
22             1;
23             __END__