84312dfe502d42c44c7a1399d2f8894c03481a7d
[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' => { 
5         message => 'foo',
6         base    => 'somebase',
7         part    => 'somepart',
8     };
9
10     action base under '/' as 'param';
11
12     action somebase under base;
13 }