X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=trunk%2Ft%2Flib%2FTestAppChainedAbsolutePathPart%2FController%2FFoo.pm;fp=trunk%2Ft%2Flib%2FTestAppChainedAbsolutePathPart%2FController%2FFoo.pm;h=bbf222ddfc2e52e6b89255b2143d0c318774cf3a;hb=ceae39c522c2145a453188867dd581062795ecee;hp=0000000000000000000000000000000000000000;hpb=f436bc1bece2bcc2a04138068e5c22e70d9d6d35;p=catagits%2FCatalyst-Runtime.git diff --git a/trunk/t/lib/TestAppChainedAbsolutePathPart/Controller/Foo.pm b/trunk/t/lib/TestAppChainedAbsolutePathPart/Controller/Foo.pm new file mode 100644 index 0000000..bbf222d --- /dev/null +++ b/trunk/t/lib/TestAppChainedAbsolutePathPart/Controller/Foo.pm @@ -0,0 +1,10 @@ +package TestAppChainedAbsolutePathPart::Controller::Foo; + +use strict; +use warnings; + +use base qw/Catalyst::Controller/; + +sub foo : Chained PathPart('/foo/bar') Args(1) { } + +1;