X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FChained%2FParentChain.pm;fp=t%2Flib%2FTestApp%2FController%2FAction%2FChained%2FParentChain.pm;h=0000000000000000000000000000000000000000;hb=f436bc1bece2bcc2a04138068e5c22e70d9d6d35;hp=69614d5858c8e7220bf211cd50a4047dfe0048f5;hpb=e28a6876ad3e11890226e5bab6df4b0725e0981e;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Chained/ParentChain.pm b/t/lib/TestApp/Controller/Action/Chained/ParentChain.pm deleted file mode 100644 index 69614d5..0000000 --- a/t/lib/TestApp/Controller/Action/Chained/ParentChain.pm +++ /dev/null @@ -1,25 +0,0 @@ -package TestApp::Controller::Action::Chained::ParentChain; -use warnings; -use strict; - -use base qw/ Catalyst::Controller /; - -# -# Chains to the action /action/chained/parentchain in the -# Action::Chained controller. -# -sub child :Chained('.') :Args(1) { } - -# Should be at /chained/rootdef/*/chained_rel/*/* -sub chained_rel :Chained('../one') Args(2) { -} - -# Should chain to loose in parent namespace - i.e. at /chained/loose/*/loose/*/* -sub loose : ChainedParent Args(2) { -} - -# Should be at /chained/cross/*/up_down/* -sub up_down : Chained('../bar/cross1') Args(1) { -} - -1;