Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Parameters.pm
diff --git a/t/lib/TestApp/View/Dump/Parameters.pm b/t/lib/TestApp/View/Dump/Parameters.pm
new file mode 100644 (file)
index 0000000..30d53df
--- /dev/null
@@ -0,0 +1,11 @@
+package TestApp::View::Dump::Parameters;
+
+use strict;
+use base 'TestApp::View::Dump';
+
+sub process {
+    my ( $self, $c ) = @_;
+    return $self->SUPER::process( $c, $c->req->parameters );
+}
+
+1;