File Coverage

lib/Config/Proxy/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::Proxy::Node::Comment;
2 7     7   47 use parent 'Config::Proxy::Node';
  7         13  
  7         44  
3              
4             =head1 NAME
5              
6             Config::Proxy::Node::Comment - comment node in proxy configuration
7              
8             =head1 DESCRIPTION
9              
10             Objects of this class represent comments in proxy 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             L, L.
30              
31             =cut
32              
33 6     6 1 15 sub is_comment { 1 }
34              
35             1;