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 3     3   90095 use 5.014002;
  3         8  
2 3     3   12 use strict;
  3         4  
  3         56  
3 3     3   10 use warnings;
  3         8  
  3         93  
4              
5             package DR::Msgpuck;
6 3     3   873 use DR::Msgpuck::Bool;
  3         5  
  3         92  
7             require Exporter;
8 3     3   1688 use AutoLoader qw(AUTOLOAD);
  3         3741  
  3         748  
9              
10             our @ISA = qw(Exporter);
11             our @EXPORT_OK = qw(msgpack msgunpack msgunpack_utf8);
12             our @EXPORT = @EXPORT_OK;
13             our $VERSION = '0.03';
14              
15             require XSLoader;
16             XSLoader::load('DR::Msgpuck', $VERSION);
17              
18             1;
19             __END__