File Coverage

blib/lib/List/ToHash.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package List::ToHash;
2 2     2   70016 use strict;
  2         15  
  2         61  
3 2     2   10 use warnings;
  2         5  
  2         60  
4 2     2   10 use Exporter 'import';
  2         5  
  2         98  
5              
6             our $VERSION = '0.02';
7             our @EXPORT_OK = qw/to_hash/;
8              
9 2     2   13 use XSLoader;
  2         4  
  2         67  
10             XSLoader::load(__PACKAGE__, $VERSION);
11              
12             1;
13             __END__