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   342411 use 5.008001;
  6         58  
3 6     6   32 use strict;
  6         12  
  6         125  
4 6     6   26 use warnings;
  6         11  
  6         172  
5 6     6   31 use Exporter 'import';
  6         9  
  6         519  
6              
7             our $VERSION = "0.204";
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   40 use XSLoader;
  6         12  
  6         292  
20             XSLoader::load(__PACKAGE__, $VERSION);
21              
22             1;
23             __END__