fixed broken renderview testcase
[catagits/CatalystX-Declare.git] / t / lib / RenderViewTestApp / Action / RenderView.pm
CommitLineData
84740762 1use MooseX::Declare;
2
3class RenderViewTestApp::Action::RenderView extends Catalyst::Action {
4
5 after execute ($, Object $ctx, @) {
6
7 $ctx->forward($ctx->view);
8 }
9}