canged prereq for D:D to ensure fix of method call issue
[catagits/CatalystX-Declare.git] / t / lib / TestApp / Controller / ViewTest.pm
CommitLineData
8e5d9092 1use CatalystX::Declare;
2
3controller TestApp::Controller::ViewTest {
4
5 action base as 'view_test' under '/';
6
7 under base {
8
9 final action normal;
10
11 final action role_test {
12 $ctx->stash(role_tag => 'modified');
13 }
14 }
15
16 action end {
17 $ctx->forward( 'View::TestView' );
18 }
19}