File Coverage

blib/lib/HH/Unispool/Config/Entry/Device/4.pm
Criterion Covered Total %
statement 141 192 73.4
branch 46 84 54.7
condition 11 27 40.7
subroutine 26 26 100.0
pod 17 17 100.0
total 241 346 69.6


line stmt bran cond sub pod time code
1             package HH::Unispool::Config::Entry::Device::4;
2              
3 6     6   990 use 5.006;
  6         26  
  6         274  
4 6     6   37 use base qw( HH::Unispool::Config::Entry::Device );
  6         12  
  6         970  
5 6     6   38 use strict;
  6         12  
  6         238  
6 6     6   31 use warnings;
  6         20  
  6         239  
7 6     6   31 use AutoLoader qw(AUTOLOAD);
  6         27  
  6         45  
8 6     6   246 use Error qw(:try);
  6         15  
  6         50  
9 6     6   1039 use HH::Unispool::Config::ExecPri;
  6         13  
  6         1198  
10              
11             # Used by _value_is_allowed
12             our %ALLOW_ISA = (
13             'execution_priority' => [ 'HH::Unispool::Config::ExecPri' ],
14             );
15              
16             # Used by _value_is_allowed
17             our %ALLOW_REF = (
18             );
19              
20             # Used by _value_is_allowed
21             our %ALLOW_RX = (
22             'destination_device' => [ '^.+$' ],
23             'header_name' => [ '^.*$' ],
24             'trailer_name' => [ '^.*$' ],
25             );
26              
27             # Used by _value_is_allowed
28             our %ALLOW_VALUE = (
29             );
30              
31             # Used by _initialize
32             our %DEFAULT_VALUE = (
33             'execution_priority' => HH::Unispool::Config::ExecPri->new( { execution_priority => '' } ),
34             'initially_spooled' => 1,
35             'networkwide' => 1,
36             'save_printfile' => 0,
37             );
38              
39             # Package version
40             our ($VERSION) = '$Revision: 0.3 $' =~ /\$Revision:\s+([^\s]+)/;
41              
42             1;
43              
44             __END__