Merge branch 'master' into psgi
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Action.pm
diff --git a/t/lib/TestApp/View/Dump/Action.pm b/t/lib/TestApp/View/Dump/Action.pm
new file mode 100644 (file)
index 0000000..a8c7a97
--- /dev/null
@@ -0,0 +1,11 @@
+package TestApp::View::Dump::Action;
+
+use strict;
+use base qw[TestApp::View::Dump];
+
+sub process {
+    my ( $self, $c ) = @_;
+    return $self->SUPER::process( $c, $c->action );
+}
+
+1;