File Coverage

blib/lib/Gruntmaster/Daemon/Constants.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             package Gruntmaster::Daemon::Constants;
2              
3 14     14   196 use 5.014000;
  14         42  
4 14     14   57 use strict;
  14         28  
  14         252  
5 14     14   57 use warnings;
  14         28  
  14         421  
6 14     14   10823 use parent qw/Exporter/;
  14         4434  
  14         83  
7              
8             our $VERSION = '5999.000_005';
9              
10             use constant +{ ## no critic (Capitalization)
11             # Accepted
12 14         2269 AC => 0,
13              
14             # Internal server error
15             ERR => -1,
16              
17             # All other errors
18             WA => 1,
19             NZX => 2,
20             TLE => 3,
21             OLE => 4,
22             DIED => 5,
23             REJ => 10,
24 14     14   1355 };
  14         28  
25              
26             our @EXPORT_OK = qw/AC ERR WA NZX TLE OLE DIED REJ/;
27              
28             1;
29             __END__