File Coverage

blib/lib/Tie/Hash/Indexed.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             ################################################################################
2             #
3             # Copyright (c) 2002-2016 Marcus Holland-Moritz. All rights reserved.
4             # This program is free software; you can redistribute it and/or modify
5             # it under the same terms as Perl itself.
6             #
7             ################################################################################
8              
9             package Tie::Hash::Indexed;
10 6     6   30832 use 5.004;
  6         49  
11 6     6   31 use strict;
  6         13  
  6         128  
12 6     6   30 use DynaLoader;
  6         9  
  6         201  
13 6     6   2850 use Tie::Hash;
  6         5875  
  6         186  
14 6     6   37 use vars qw($VERSION @ISA);
  6         12  
  6         485  
15              
16             @ISA = qw(DynaLoader Tie::Hash);
17             $VERSION = '0.05_04';
18              
19             bootstrap Tie::Hash::Indexed $VERSION;
20              
21             1;
22              
23             __END__