File Coverage

lib/Config/Pound/Node/Verbatim.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package Config::Pound::Node::Verbatim;
2 3     3   18 use parent 'Config::Proxy::Node';
  3         4  
  3         15  
3              
4             =head1 NAME
5              
6             Config::Pound::Node::Verbatim - A verbatim line from Pound ACL.
7              
8             =head1 DESCRIPTION
9              
10             Objects of this class represent verbatim context embedded in
11             a Pound configuration. Currently it is used to represent contents of
12             B statement in B section.
13              
14             B is a section statement, that contains the resolver
15             configuration (as described in B(5)) verbatim. Each line
16             from that section is represented by a single object of this class.
17              
18             =head1 METHODS
19              
20             See L for a discussion of methods. Notes for this
21             class:
22              
23             =head2 kw
24              
25             This method returns an empty string.
26              
27             =head2 orig
28              
29             This method returns the actual line read from the configuration file.
30              
31             =head1 SEE ALSO
32              
33             L, L, L.
34              
35             =cut
36              
37              
38             1;
39              
40            
41