Remove use of Catalyst::Base from the tests
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Args.pm
CommitLineData
855ed931 1package TestApp::Controller::Args;
2
3use strict;
c057ae86 4use base 'Catalyst::Controller';
855ed931 5
6sub args :Local {
7 my ( $self, $c ) = @_;
8 $c->res->body( join('',@{$c->req->args}) );
9}
10
11sub params :Local {
12 my ( $self, $c ) = splice @_, 0, 2;
13 $c->res->body( join('',@_) );
14}
15
2f381252 161;