fixed broken renderview testcase
[catagits/CatalystX-Declare.git] / t / lib / RenderViewTestApp / Action / RenderView.pm
diff --git a/t/lib/RenderViewTestApp/Action/RenderView.pm b/t/lib/RenderViewTestApp/Action/RenderView.pm
new file mode 100644 (file)
index 0000000..81535c5
--- /dev/null
@@ -0,0 +1,9 @@
+use MooseX::Declare;
+
+class RenderViewTestApp::Action::RenderView extends Catalyst::Action {
+
+    after execute ($, Object $ctx, @) {
+
+        $ctx->forward($ctx->view);
+    }
+}