Initial support for :Args attribute
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Local.pm
index 65f3293..9d30cf2 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');
 }