Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / View / Dump / Parameters.pm
CommitLineData
dd4e6fd2 1package TestApp::View::Dump::Parameters;
2
3use strict;
fbcc39ad 4use base 'TestApp::View::Dump';
dd4e6fd2 5
6sub process {
7 my ( $self, $c ) = @_;
8 return $self->SUPER::process( $c, $c->req->parameters );
9}
10
111;