fixed broken renderview testcase
Robert 'phaylon' Sedlacek [Thu, 17 Sep 2009 21:09:58 +0000 (23:09 +0200)]
Changes
t/lib/RenderViewTestApp/Action/RenderView.pm [new file with mode: 0644]

diff --git a/Changes b/Changes
index c77d64a..2ce7d55 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,4 +1,5 @@
 [0.011] ...
+    - Fixed broken isa RenderView test case
 
 [0.010] Sun Sep 13 15:52:01 CEST 2009
     - Fix Compat with MooseX::Method::Signatures >=0.22 ( KENTNL )
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);
+    }
+}