File Coverage

blib/lib/IO/Uncompress/Brotli.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package IO::Uncompress::Brotli;
2              
3 3     3   59248 use 5.014000;
  3         17  
4 3     3   16 use strict;
  3         6  
  3         48  
5 3     3   11 use warnings;
  3         4  
  3         72  
6 3     3   222 use parent qw/Exporter/;
  3         212  
  3         16  
7              
8             our @EXPORT = qw/unbro/;
9             our @EXPORT_OK = @EXPORT;
10              
11             our $VERSION = '0.004';
12              
13             require XSLoader;
14             XSLoader::load('IO::Compress::Brotli', $VERSION);
15              
16             1;
17             __END__