parameterized roles now available
[catagits/CatalystX-Declare.git] / t / lib / TestApp / Controller / Parameterized.pm
1 use CatalystX::Declare;
2
3 controller TestApp::Controller::Parameterized {
4     with 'TestApp::ControllerRole::Parameterized' => { message => 'foo' };
5
6     action base under '/' as 'param';
7 }