File Coverage

blib/lib/HH/Unispool/Config/Entry.pm
Criterion Covered Total %
statement 48 63 76.1
branch 11 32 34.3
condition 8 27 29.6
subroutine 11 11 100.0
pod 4 4 100.0
total 82 137 59.8


line stmt bran cond sub pod time code
1             package HH::Unispool::Config::Entry;
2              
3 8     8   118 use 5.006;
  8         26  
  8         283  
4 8     8   44 use strict;
  8         15  
  8         271  
5 8     8   45 use warnings;
  8         19  
  8         262  
6 8     8   37 use AutoLoader qw(AUTOLOAD);
  8         21  
  8         159  
7 8     8   254 use Error qw(:try);
  8         226  
  8         46  
8              
9             # Used by _value_is_allowed
10             our %ALLOW_ISA = (
11             );
12              
13             # Used by _value_is_allowed
14             our %ALLOW_REF = (
15             );
16              
17             # Used by _value_is_allowed
18             our %ALLOW_RX = (
19             'name' => [ '^.+$' ],
20             );
21              
22             # Used by _value_is_allowed
23             our %ALLOW_VALUE = (
24             );
25              
26             # Package version
27             our ($VERSION) = '$Revision: 0.3 $' =~ /\$Revision:\s+([^\s]+)/;
28              
29             1;
30              
31             __END__