private actions now have default signature of (@)
[catagits/CatalystX-Declare.git] / t / lib / RenderViewTestApp / Controller / Root.pm
CommitLineData
2bb54af3 1use CatalystX::Declare;
2
3controller RenderViewTestApp::Controller::Root {
4
5 $CLASS->config(namespace => '');
6
7
8 action base as '' under '/';
9
10 final action foo under base {
11 $ctx->stash(current_view => 'Test');
12 }
13
17a275f5 14 action end is private isa RenderView;
2bb54af3 15}