File Coverage

blib/lib/CGI/Lazy/Utility.pm
Criterion Covered Total %
statement 12 16 75.0
branch n/a
condition n/a
subroutine 4 6 66.6
pod 3 3 100.0
total 19 25 76.0


line stmt bran cond sub pod time code
1             package CGI::Lazy::Utility;
2              
3 1     1   1249 use strict;
  1         2  
  1         37  
4              
5 1     1   7 use CGI::Lazy::Globals;
  1         2  
  1         110  
6 1     1   717 use CGI::Lazy::Utility::Debug;
  1         3  
  1         99  
7              
8             #--------------------------------------------------------------
9             sub debug {
10 0     0 1 0 my $self = shift;
11              
12 0         0 return CGI::Lazy::Utility::Debug->new($self->q);
13             }
14              
15             #--------------------------------------------------------------
16             sub q {
17 0     0 1 0 my $self = shift;
18              
19 0         0 return $self->{_q};
20             }
21              
22             #--------------------------------------------------------------
23             sub new {
24 1     1 1 2 my $class = shift;
25 1         3 my $q = shift;
26              
27 1         9 return bless {_q => $q}, $class;
28             }
29              
30             1
31              
32             __END__