Converted C::P::CGIBin to C::C::CGIBin, added regex env key support
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBin / Controller / CGIHandler.pm
CommitLineData
21a20b7e 1package TestCGIBin::Controller::CGIHandler;
2
3use parent 'Catalyst::Controller::CGIBin';
4
5# try out a forward
6sub dongs : Local Args(0) {
7 my ($self, $c) = @_;
8 $c->forward('/cgihandler/CGI_test_pl');
9}
10
11# try resolved forward
12sub mtfnpy : Local Args(0) {
13 my ($self, $c) = @_;
14 $c->forward($self->cgi_action('test.pl'));
15}
16
171;