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   348337 use 5.008001;
  6         78  
3 6     6   33 use strict;
  6         11  
  6         117  
4 6     6   29 use warnings;
  6         11  
  6         175  
5 6     6   30 use Exporter 'import';
  6         9  
  6         538  
6              
7             our $VERSION = "0.206";
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   43 use XSLoader;
  6         13  
  6         325  
20             XSLoader::load(__PACKAGE__, $VERSION);
21              
22             1;
23             __END__