add tests which prove the current behavior of not decoding chained args but decoding...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Local.pm
index 65f3293..d1672a0 100644 (file)
@@ -8,7 +8,7 @@ sub one : Action Relative {
     $c->forward('TestApp::View::Dump::Request');
 }
 
-sub two : Action Local {
+sub two : Action Local Args(2) {
     my ( $self, $c ) = @_;
     $c->forward('TestApp::View::Dump::Request');
 }
@@ -23,4 +23,9 @@ sub four : Action Path('four/five/six') {
     $c->forward('TestApp::View::Dump::Request');
 }
 
+sub five : Action Local Args(1) {
+    my ( $self, $c ) = @_;
+    $c->forward('TestApp::View::Dump::Request');
+}
+
 1;