File Coverage

blib/lib/System/InitD/Const.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 System::InitD::Const;
2              
3             =head1 NAME
4              
5             System::InitD::Const
6              
7             =head1 DESCRIPTION
8              
9             Constants bundle for System::InitD package
10              
11             =head1 CONSTANTS
12              
13             =cut
14              
15 1     1   11 use strict;
  1         3  
  1         63  
16 1     1   9 use warnings;
  1         4  
  1         58  
17              
18 1     1   8 use base qw/Exporter/;
  1         4  
  1         202  
19              
20             our @EXPORT = qw/
21             DAEMON_ALREADY_RUNNING
22             DAEMON_IS_NOT_RUNNING
23             /;
24              
25 1     1   10 use constant DAEMON_ALREADY_RUNNING => "Daemon already running";
  1         4  
  1         116  
26 1     1   10 use constant DAEMON_IS_NOT_RUNNING => "Daemon is not running";
  1         4  
  1         86  
27              
28             1;
29              
30             __END__