added more to Test, added testapp_test, and worked on start_fcgi
[catagits/Catalyst-Runtime.git] / t / TestApp / script / testapp_test.pl
1 #!/usr/bin/env perl
2 use FindBin qw/$Bin/;
3
4 ## because this is a test
5 use lib "$Bin/../../../lib";
6 use Catalyst::ScriptRunner;
7 Catalyst::ScriptRunner->run('Catalyst','Test');
8
9 1;
10
11 =head1 NAME
12
13 testapp_test.pl - Catalyst Test
14
15 =head1 SYNOPSIS
16
17 testapp_test.pl [options] uri
18
19  Options:
20    -help    display this help and exits
21
22  Examples:
23    testapp_test.pl http://localhost/some_action
24    testapp_test.pl /some_action
25
26  See also:
27    perldoc Catalyst::Manual
28    perldoc Catalyst::Manual::Intro
29
30 =head1 DESCRIPTION
31
32 Run a Catalyst action from the command line.
33
34 =head1 AUTHORS
35
36 Catalyst Contributors, see Catalyst.pm
37
38 =head1 COPYRIGHT
39
40 This library is free software. You can redistribute it and/or modify
41 it under the same terms as Perl itself.
42
43 =cut