File Coverage

blib/lib/Tie/OrderedHash.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 1 1 100.0
total 22 22 100.0


line stmt bran cond sub pod time code
1             package Tie::OrderedHash;
2              
3 16     16   1438249 use 5.010;
  16         55  
4 16     16   114 use strict;
  16         109  
  16         461  
5 16     16   72 use warnings;
  16         39  
  16         764  
6 16     16   7165 use Tie::Hash ();
  16         13620  
  16         406  
7              
8 16     16   92 use DynaLoader;
  16         25  
  16         1414  
9             our @ISA = ('Tie::Hash', 'DynaLoader');
10             our $VERSION = '0.04';
11 16     16 1 5477 sub dl_load_flags { 0x01 } # RTLD_GLOBAL
12              
13             __PACKAGE__->bootstrap($VERSION);
14              
15             1;
16              
17             __END__