fixed Catalyst::Script::Server so app doesn't have to be a cmd line opt
[catagits/Catalyst-Runtime.git] / t / TestApp / script / testapp_cgi.pl
CommitLineData
cc999ce2 1#!/usr/bin/env perl
2
accb0640 3use FindBin qw/$Bin/;
cc999ce2 4
accb0640 5## because this is a test
6use lib "$Bin/../../../lib";
7use Catalyst::ScriptRunner;
8Catalyst::ScriptRunner->run('Catalyst','CGI');
cc999ce2 9
101;
11
12=head1 NAME
13
14testapp_cgi.pl - Catalyst CGI
15
16=head1 SYNOPSIS
17
18See L<Catalyst::Manual>
19
20=head1 DESCRIPTION
21
22Run a Catalyst application as a cgi script.
23
24=head1 AUTHORS
25
26Catalyst Contributors, see Catalyst.pm
27
28=head1 COPYRIGHT
29
30
31This library is free software. You can redistribute it and/or modify
32it under the same terms as Perl itself.
33
34=cut