X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FChained%2FFoo.pm;h=7e3ff4b1e91b8315387e923bae455ad6c13615b6;hp=4ff9b2045e5119c69ebd24573bbdc747efcc0a8d;hb=1c34f703cbd82cddceea95593001a579e1d5f646;hpb=1dc8af447f43168c875c0c62f2cfb50d66173eaf diff --git a/t/lib/TestApp/Controller/Action/Chained/Foo.pm b/t/lib/TestApp/Controller/Action/Chained/Foo.pm index 4ff9b20..7e3ff4b 100644 --- a/t/lib/TestApp/Controller/Action/Chained/Foo.pm +++ b/t/lib/TestApp/Controller/Action/Chained/Foo.pm @@ -13,12 +13,12 @@ sub spoon :Chained('.') :Args(0) { } # # Root for a action in a "parent" controller # -sub higher_root :PathPart('chained/higher_root') :Chained('/') :Captures(1) { } +sub higher_root :PathPart('chained/higher_root') :Chained('/') :CaptureArgs(1) { } # # Parent controller -> this subcontroller -> parent controller test # -sub pcp2 :Chained('/action/chained/pcp1') :Captures(1) { } +sub pcp2 :Chained('/action/chained/pcp1') :CaptureArgs(1) { } # # Controllers not in parent/child relation. This tests the end.