File Coverage

lib/Config/HAProxy/Node/Comment.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 1 1 100.0
total 7 7 100.0


line stmt bran cond sub pod time code
1             package Config::HAProxy::Node::Comment;
2 2     2   12 use parent 'Config::HAProxy::Node';
  2         9  
  2         9  
3              
4             =head1 NAME
5              
6             Config::HAProxy::Node::Comment - comment node in HAProxy configuration
7              
8             =head1 DESCRIPTION
9              
10             Objects of this class represent comments in HAProxy configuration file.
11              
12             =head1 METHODS
13              
14             =head2 is_comment
15              
16             Returns true.
17              
18             =head2 orig
19              
20             Returns original line as it appeared in the configuration file.
21              
22             =head2 locus
23              
24             Returns the location of this statement in the configuration file (the
25             B object).
26              
27             =head1 SEE ALSO
28              
29             B, B.
30              
31             =cut
32              
33 3     3 1 5 sub is_comment { 1 }
34              
35             1;
36              
37