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%2FChildOf%2FFoo.pm;h=d75f45a9e334e5e3f7342008658d40a372b7a5be;hp=1e1ea0a4ee971cf1b4561d4f793d5215ec3e8d22;hb=09461385e3f0f62cbf3a95a71d00f71e1a42ca75;hpb=7a7ac23cbfaba1c66a454132313ceb7e885ab98b diff --git a/t/lib/TestApp/Controller/Action/ChildOf/Foo.pm b/t/lib/TestApp/Controller/Action/ChildOf/Foo.pm index 1e1ea0a..d75f45a 100644 --- a/t/lib/TestApp/Controller/Action/ChildOf/Foo.pm +++ b/t/lib/TestApp/Controller/Action/ChildOf/Foo.pm @@ -8,7 +8,7 @@ use base qw/Catalyst::Controller/; # # Child of current namespace # -sub spoon :PathPart :ChildOf('') :Args(0) { } +sub spoon :ChildOf('') :Args(0) { } # # Root for a action in a "parent" controller @@ -18,7 +18,7 @@ sub higher_root :PathPart('childof/higher_root') :ChildOf('/') :Captures(1) { } # # Parent controller -> this subcontroller -> parent controller test # -sub pcp2 :PathPart :ChildOf('/action/childof/pcp1') :Captures(1) { } +sub pcp2 :ChildOf('/action/childof/pcp1') :Captures(1) { } # # Controllers not in parent/child relation. This tests the end.