From #catalyst-dev before
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / ControllerBase / OtherRoot.pm
1 package TestApp::ControllerBase::OtherRoot;
2
3 use Moose;
4
5 use namespace::clean -except => 'meta';
6
7 BEGIN { extends qw/Catalyst::Controller/; }
8
9 sub chain_middle : CaptureArgs(0) PathPart('') Chained('chain_first') {}
10
11 __PACKAGE__->meta->make_immutable;
12
13 1;