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