forgot to add a file
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault / Controller / Default.pm
CommitLineData
db9f3d4c 1package TestAppIndexDefault::Controller::Default;
2
3use base 'Catalyst::Controller';
4
5sub default : Private {
6 my ($self, $c) = @_;
7 $c->res->body('default_default');
8}
9
10sub path_one_arg : Path('/default') Args(1) {
11 my ($self, $c) = @_;
12 $c->res->body('default_path_one_arg');
13}
14
151;