Merged 5.49_01 (r1339) from refactored branch to trunk
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action / Forward.pm
similarity index 88%
rename from t/lib/TestApp/Controller/Action/Forward.pm
rename to t/live/lib/TestApp/Controller/Action/Forward.pm
index 6a74ddd..b03eff9 100644 (file)
@@ -28,19 +28,12 @@ sub five : Local {
     $c->forward('TestApp::View::Dump::Request');
 }
 
-sub six : Local {
-    my ( $self, $c ) = @_;
-    $c->forward('TestApp::View::Dump::False');
-}
-
-
 sub jojo : Local {
     my ( $self, $c ) = @_;
     $c->forward('one');
     $c->forward('three');
 }
 
-
 sub inheritance : Local {
     my ( $self, $c ) = @_;
     $c->forward('/action/inheritance/a/b/default');
@@ -49,12 +42,12 @@ sub inheritance : Local {
 
 sub global : Local {
     my ( $self, $c ) = @_;
-    $c->forward( '/global_action' );
+    $c->forward('/global_action');
 }
 
 sub with_args : Local {
     my ( $self, $c, $orig ) = @_;
-    $c->forward( 'args',[qq/new/] );
+    $c->forward( 'args', [qq/new/] );
     $c->res->body( $c->req->args->[0] );
 }