X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FChained%2FParentChain%2FRelative.pm;fp=t%2Flib%2FTestApp%2FController%2FAction%2FChained%2FParentChain%2FRelative.pm;h=36f2a6c84c6f8b6f75ee523525462d8cf6136fbf;hb=2f3812528068bc1d9f7840067f0c03d36cd47e6d;hp=0000000000000000000000000000000000000000;hpb=afb82794328ff8da1efc0a4c37f3f3703c262c31;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Chained/ParentChain/Relative.pm b/t/lib/TestApp/Controller/Action/Chained/ParentChain/Relative.pm new file mode 100644 index 0000000..36f2a6c --- /dev/null +++ b/t/lib/TestApp/Controller/Action/Chained/ParentChain/Relative.pm @@ -0,0 +1,10 @@ +package TestApp::Controller::Action::Chained::ParentChain::Relative; +use warnings; +use strict; + +use base qw/ Catalyst::Controller /; + +# using ../ to go up more than one level +sub chained_rel_two : Chained('../../one') Args(2) { } + +1;