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