File Coverage

blib/lib/CGI/Stateless.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 7 7 100.0
pod 0 1 0.0
total 24 25 96.0


line stmt bran cond sub pod time code
1             package CGI::Stateless;
2 2     2   115301 use 5.010001;
  2         14  
3 2     2   9 use warnings;
  2         3  
  2         42  
4 2     2   7 use strict;
  2         3  
  2         29  
5 2     2   989 use utf8;
  2         24  
  2         8  
6 2     2   51 use Carp;
  2         4  
  2         113  
7              
8             our $VERSION = 'v2.0.1';
9              
10 2     2   751 use parent 'CGI';
  2         456  
  2         9  
11              
12              
13             # override the initialization behavior so that
14             # state is NOT maintained between invocations
15       3 0   sub save_request { }
16              
17              
18             1; # Magic true value required at end of module
19             __END__