component_role -> controller_role
[catagits/CatalystX-Declare.git] / t / lib / TestApp / Controller / Composed.pm
CommitLineData
744e2821 1use CatalystX::Declare;
2
205323ac 3controller_role TestApp::ControllerRole::Composed {
744e2821 4 method composed_method { }
5 action composed_action;
6}
7
8controller TestApp::ControllerBase::Composed {
9 method inherited_method { }
10 action inherited_action;
11}
12
13controller TestApp::Controller::Composed
14 extends TestApp::ControllerBase::Composed
15 with TestApp::ControllerRole::Composed {
16
17 method original_method { }
18 action original_action;
19}