File Coverage

blib/lib/Data/HashMap.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::HashMap;
2              
3 20     20   124 use strict;
  20         43  
  20         757  
4 20     20   105 use warnings;
  20         40  
  20         2284  
5              
6             our $VERSION = '0.01';
7              
8             require XSLoader;
9             XSLoader::load('Data::HashMap', $VERSION);
10              
11             1;
12              
13             __END__