WrapCGI: implementing mst's suggestions
[catagits/Catalyst-Controller-WrapCGI.git] / t / lib / TestCGIBin / Controller / CGIHandler.pm
index 41e20f5..12c4592 100644 (file)
@@ -5,13 +5,13 @@ use parent 'Catalyst::Controller::CGIBin';
 # try out a forward
 sub dongs : Local Args(0) {
     my ($self, $c) = @_;
-    $c->forward('/cgihandler/CGI_test_pl');
+    $c->forward('/cgihandler/CGI_path_test_pl');
 }
 
 # try resolved forward
 sub mtfnpy : Local Args(0) {
     my ($self, $c) = @_;
-    $c->forward($self->cgi_action('test.pl'));
+    $c->forward($self->cgi_action('path/test.pl'));
 }
 
 1;