File Coverage

blib/lib/Data/BinaryBuffer.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Data::BinaryBuffer;
2 1     1   80270 use strict;
  1         4  
  1         50  
3 1     1   6 use warnings;
  1         2  
  1         88  
4              
5             # ABSTRACT: The module to work with binary data effectively
6             our $VERSION = '0.005'; # VERSION
7              
8             require XSLoader;
9             XSLoader::load('Data::BinaryBuffer', $VERSION);
10              
11             1;
12              
13             __END__