Will flatten the capture args in uri_for
[catagits/Catalyst-Runtime.git] / t / lib / ACLTestApp / Controller / Root.pm
CommitLineData
b3986722 1package ACLTestApp::Controller::Root;
a9d5be5a 2use Test::More;
b3986722 3
4use base 'Catalyst::Controller';
5
6__PACKAGE__->config->{namespace} = '';
7
8sub foobar : Private {
9 die $Catalyst::DETACH;
10}
11
12sub gorch : Local {
13 my ( $self, $c, $frozjob ) = @_;
14 is $frozjob, 'wozzle';
15 $c->res->body("gorch");
16}
17
181;