File Coverage

blib/lib/HH/Unispool/Config/ExecPri.pm
Criterion Covered Total %
statement 46 62 74.1
branch 12 30 40.0
condition 9 27 33.3
subroutine 11 11 100.0
pod 4 4 100.0
total 82 134 61.1


line stmt bran cond sub pod time code
1             package HH::Unispool::Config::ExecPri;
2              
3 20     20   628 use 5.006;
  20         72  
  20         795  
4 20     20   113 use strict;
  20         40  
  20         691  
5 20     20   109 use warnings;
  20         33  
  20         841  
6 20     20   104 use AutoLoader qw(AUTOLOAD);
  20         35  
  20         151  
7 20     20   744 use Error qw(:try);
  20         42  
  20         152  
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             );
20              
21             # Used by _value_is_allowed
22             our %ALLOW_VALUE = (
23             'execution_priority' => {
24             '' => 1,
25             'BS' => 1,
26             'CS' => 1,
27             'DS' => 1,
28             'ES' => 1,
29             },
30             );
31              
32             # Package version
33             our ($VERSION) = '$Revision: 0.3 $' =~ /\$Revision:\s+([^\s]+)/;
34              
35             1;
36              
37             __END__