X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestAppMatchSingleArg%2FController%2FRoot.pm;fp=t%2Flib%2FTestAppMatchSingleArg%2FController%2FRoot.pm;h=d00b6ae33d71221d59cd90c7daf1ff38bccbd892;hp=ab24f12a0b6e68ccd15649d45cc5c54ec3308224;hb=cdf573a6d9c22e23e322b3a4e8ed1dbd189c3304;hpb=391c455f09b823578778b40dce5282890de302d0 diff --git a/t/lib/TestAppMatchSingleArg/Controller/Root.pm b/t/lib/TestAppMatchSingleArg/Controller/Root.pm index ab24f12..d00b6ae 100644 --- a/t/lib/TestAppMatchSingleArg/Controller/Root.pm +++ b/t/lib/TestAppMatchSingleArg/Controller/Root.pm @@ -16,4 +16,9 @@ sub match_other : Path { $c->res->body('Path'); } +sub match_two : Path Args(2) { + my ($self, $c) = @_; + $c->res->body('Path Args(2)'); +} + 1;