File Coverage

blib/lib/Gzip/Zopfli.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Gzip::Zopfli;
2 2     2   157030 use warnings;
  2         15  
  2         78  
3 2     2   13 use strict;
  2         3  
  2         46  
4 2     2   10 use Carp;
  2         4  
  2         159  
5 2     2   14 use utf8;
  2         4  
  2         13  
6             require Exporter;
7             our @ISA = qw(Exporter);
8             our @EXPORT_OK = qw/ZopfliCompress/;
9             our %EXPORT_TAGS = (
10             all => \@EXPORT_OK,
11             );
12             our $VERSION = '0.00_02';
13             require XSLoader;
14             XSLoader::load ('Gzip::Zopfli', $VERSION);
15             1;