File Coverage

blib/lib/Catalyst/Script/CGI.pm
Criterion Covered Total %
statement 7 7 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 10 100.0


line stmt bran cond sub pod time code
1             use Moose;
2 3     3   74597 use namespace::clean -except => [ 'meta' ];
  3         468155  
  3         21  
3 3     3   22253  
  3         6154  
  3         29  
4              
5 2     2   12 with 'Catalyst::ScriptRole';
6              
7             __PACKAGE__->meta->make_immutable;
8             1;
9              
10             =head1 NAME
11              
12             Catalyst::Script::CGI - The CGI Catalyst Script
13              
14             =head1 SYNOPSIS
15              
16             myapp_cgi.pl [options]
17              
18             Options:
19             -? --help display this help and exits
20              
21             =head1 DESCRIPTION
22              
23             This is a script to run the Catalyst engine specialized for the CGI environment.
24              
25             =head1 SEE ALSO
26              
27             L<Catalyst::ScriptRunner>
28              
29             =head1 AUTHORS
30              
31             Catalyst Contributors, see Catalyst.pm
32              
33             =head1 COPYRIGHT
34              
35             This library is free software. You can redistribute it and/or modify it under
36             the same terms as Perl itself.
37              
38             =cut