minor changes
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault / Controller / Root.pm
CommitLineData
91955398 1package TestAppIndexDefault::Controller::Root;
05b47f2e 2
3use base 'Catalyst::Controller';
4
91955398 5__PACKAGE__->config->{namespace} = '';
6
05b47f2e 7sub default : Private {
8 my ($self, $c) = @_;
9 $c->res->body('default');
10}
11
12sub path_one_arg : Path('/') Args(1) {
13 my ($self, $c) = @_;
14 $c->res->body('path_one_arg');
15}
16
171;