parse actionrole params and pass them to attributes
[catagits/CatalystX-Declare.git] / t / lib / TestApp / Controller / SubclassingErrors.pm
1 use CatalystX::Declare;
2
3 controller TestApp::Controller::SubclassingErrors
4    extends TestApp::Controller::Errors {
5
6     action base under '/' as 'sub_errors';
7
8     around signature_error_on_foo_modify ($ctx, $str) {
9         $self->$orig($ctx, $str);
10     }
11 }