File Coverage

blib/lib/Compress/Stream/Zstd/Compressor.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::Compressor;
2 2     2   69629 use 5.008001;
  2         15  
3 2     2   19 use strict;
  2         4  
  2         53  
4 2     2   9 use warnings;
  2         4  
  2         61  
5 2     2   10 use Exporter 'import';
  2         6  
  2         59  
6              
7 2     2   411 use Compress::Stream::Zstd ();
  2         6  
  2         94  
8              
9             our @EXPORT = qw(
10             ZSTD_CSTREAM_IN_SIZE
11             ZSTD_c_windowLog
12             );
13              
14             1;
15             __END__