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   6 use strict;
  1         2  
  1         32  
16 1     1   5 use warnings;
  1         2  
  1         34  
17              
18 1     1   6 use base qw/Exporter/;
  1         3  
  1         125  
19              
20             our @EXPORT = qw/
21             DAEMON_ALREADY_RUNNING
22             DAEMON_IS_NOT_RUNNING
23             /;
24              
25 1     1   6 use constant DAEMON_ALREADY_RUNNING => "Daemon already running\n";
  1         2  
  1         76  
26 1     1   5 use constant DAEMON_IS_NOT_RUNNING => "Daemon is not running\n";
  1         1  
  1         52  
27              
28             1;
29              
30             __END__