X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive%2Flib%2FTestApp%2FController%2FAction%2FRegexp.pm;h=e454cfd57cdfe0eb3f2502eee09fdb326531fe10;hb=587b0f5882d4f5e128ae082758da37b065a3efde;hp=8069f33c0922b215bd549127c0a1e3b77bae2278;hpb=6d030e6fc87ce5f0e9c4c9d0d5dccc90068b62c8;p=catagits%2FCatalyst-Runtime.git diff --git a/t/live/lib/TestApp/Controller/Action/Regexp.pm b/t/live/lib/TestApp/Controller/Action/Regexp.pm index 8069f33..e454cfd 100644 --- a/t/live/lib/TestApp/Controller/Action/Regexp.pm +++ b/t/live/lib/TestApp/Controller/Action/Regexp.pm @@ -8,7 +8,7 @@ sub one : Action Regex('^action/regexp/(\w+)/(\d+)$') { $c->forward('TestApp::View::Dump::Request'); } -sub two : Action Regexp('^action/regexp/(\d+)/(\w+)$') { +sub two : Action LocalRegexp('^(\d+)/(\w+)$') { my ( $self, $c ) = @_; $c->forward('TestApp::View::Dump::Request'); }