File Coverage

blib/lib/Gruntmaster/Daemon/Constants.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Gruntmaster::Daemon::Constants;
2              
3 2     2   33 use 5.014000;
  2         7  
  2         71  
4 2     2   11 use strict;
  2         3  
  2         55  
5 2     2   8 use warnings;
  2         4  
  2         61  
6 2     2   4055 use parent qw/Exporter/;
  2         1373  
  2         13  
7              
8             our $VERSION = "5999.000_004";
9              
10             use constant +{
11             # Accepted
12 2         19588 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 2     2   191 };
  2         5  
25              
26             our @EXPORT_OK = qw/AC ERR WA NZX TLE OLE DIED REJ/;
27              
28             1;
29             __END__