File Coverage

blib/lib/Devel/Hexdump.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Devel::Hexdump;
2              
3 2     2   63252 use 5.008008;
  2         7  
  2         88  
4 2     2   12 use strict;
  2         4  
  2         79  
5 2     2   22 use warnings;
  2         9  
  2         128  
6 2     2   11 BEGIN { require Exporter; our @ISA = 'Exporter'; }
  2         227  
7             our %EXPORT_TAGS = ( 'all' => [ our @EXPORT = our @EXPORT_OK = qw(xd) ]);
8             our $VERSION = '0.02';
9              
10             require XSLoader;
11             XSLoader::load('Devel::Hexdump', $VERSION);
12              
13             1;
14             __END__