bbf222ddfc2e52e6b89255b2143d0c318774cf3a
[catagits/Catalyst-Runtime.git] / trunk / t / lib / TestAppChainedAbsolutePathPart / Controller / Foo.pm
1 package TestAppChainedAbsolutePathPart::Controller::Foo;
2
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst::Controller/;
7
8 sub foo : Chained PathPart('/foo/bar') Args(1) { }
9
10 1;