Updating branch to current revision
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestAppIndexDefault / Controller / Root.pm
CommitLineData
e28a6876 1package TestAppIndexDefault::Controller::Root;
2
3use base 'Catalyst::Controller';
4
5__PACKAGE__->config->{namespace} = '';
6
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;