X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=trunk%2Ft%2Flib%2FTestApp%2FController%2FAction%2FChained%2FBar.pm;fp=trunk%2Ft%2Flib%2FTestApp%2FController%2FAction%2FChained%2FBar.pm;h=1835d503f1139613a291cd543e278a356beaebfe;hb=ceae39c522c2145a453188867dd581062795ecee;hp=0000000000000000000000000000000000000000;hpb=f436bc1bece2bcc2a04138068e5c22e70d9d6d35;p=catagits%2FCatalyst-Runtime.git diff --git a/trunk/t/lib/TestApp/Controller/Action/Chained/Bar.pm b/trunk/t/lib/TestApp/Controller/Action/Chained/Bar.pm new file mode 100644 index 0000000..1835d50 --- /dev/null +++ b/trunk/t/lib/TestApp/Controller/Action/Chained/Bar.pm @@ -0,0 +1,14 @@ +package TestApp::Controller::Action::Chained::Bar; + +use strict; +use warnings; + +use base qw/Catalyst::Controller/; + +# +# Redispatching between controllers that are not in a parent/child +# relation. This is the root. +# +sub cross1 :PathPart('chained/cross') :CaptureArgs(1) :Chained('/') { } + +1;