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   84986 use 5.014000;
  3         21  
4 3     3   21 use strict;
  3         7  
  3         72  
5 3     3   31 use warnings;
  3         7  
  3         107  
6 3     3   439 use parent qw/Exporter/;
  3         304  
  3         19  
7              
8             our @EXPORT = qw/unbro/;
9             our @EXPORT_OK = @EXPORT;
10              
11             our $VERSION = '0.004001';
12              
13             require XSLoader;
14             XSLoader::load('IO::Compress::Brotli', $VERSION);
15              
16             1;
17             __END__