some minor fixes
[catagits/CatalystX-Declare.git] / t / lib / TestApp / Controller / ViewTest.pm
1 use CatalystX::Declare;
2
3 controller 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 }