nicer action sorting for Path
[catagits/Catalyst-Runtime.git] / t / lib / TestAppIndexDefault / Controller / DefaultAndPath.pm
CommitLineData
05b47f2e 1package TestAppIndexDefault::Controller::DefaultAndPath;
2
3use base 'Catalyst::Controller';
4
5sub default : Private {
6 my ($self, $c) = @_;
7 $c->res->body('default');
8}
9
10sub path_one_arg : Path('/') Args(1) {
11 my ($self, $c) = @_;
12 $c->res->body('path_one_arg');
13}
14
151;