File Coverage

blib/lib/Compress/Huffman/Binary.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Compress::Huffman::Binary;
2 1     1   12558 use warnings;
  1         1  
  1         28  
3 1     1   4 use strict;
  1         0  
  1         15  
4 1     1   3 use Carp;
  1         2  
  1         111  
5             require Exporter;
6             our @ISA = qw(Exporter);
7             our @EXPORT_OK = qw/huffman_encode huffman_decode/;
8             our %EXPORT_TAGS = (
9             all => \@EXPORT_OK,
10             );
11             our $VERSION = '0.00_01';
12             require XSLoader;
13             XSLoader::load ('Compress::Huffman::Binary', $VERSION);
14             1;