File Coverage

blib/lib/DR/Msgpuck.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 4     4   99302 use 5.014002;
  4         10  
2 4     4   12 use strict;
  4         4  
  4         58  
3 4     4   9 use warnings;
  4         8  
  4         107  
4              
5             package DR::Msgpuck;
6 4     4   978 use DR::Msgpuck::Bool;
  4         5  
  4         107  
7             require Exporter;
8 4     4   1811 use AutoLoader qw(AUTOLOAD);
  4         4081  
  4         675  
9              
10             our @ISA = qw(Exporter);
11             our @EXPORT_OK = qw(msgpack msgunpack msgunpack_utf8 msgunpack_check);
12             our @EXPORT = @EXPORT_OK;
13             our $VERSION = '0.04';
14              
15             require XSLoader;
16             XSLoader::load('DR::Msgpuck', $VERSION);
17              
18             1;
19             __END__