X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestAppChainedAbsolutePathPart%2FController%2FFoo.pm;fp=t%2Flib%2FTestAppChainedAbsolutePathPart%2FController%2FFoo.pm;h=bbf222ddfc2e52e6b89255b2143d0c318774cf3a;hb=8a6a6581d48a3c1c4d5f631cdb7cbda336c0e5e2;hp=0000000000000000000000000000000000000000;hpb=1b04b972e18d9681ab30d07a267bb2896ea9f7d2;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestAppChainedAbsolutePathPart/Controller/Foo.pm b/t/lib/TestAppChainedAbsolutePathPart/Controller/Foo.pm new file mode 100644 index 0000000..bbf222d --- /dev/null +++ b/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;