X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FRegexp.pm;h=79668749ee807d61ab955d07269bfaaa4848734e;hb=e6968720453a63b5d43f77c17bc147ef560957e2;hp=4b59d58641f5b21ad3b814291fdb95215a35e28b;hpb=873b98ee118b378ace23ffdba0b440bcefdfc8c1;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Regexp.pm b/t/lib/TestApp/Controller/Action/Regexp.pm index 4b59d58..7966874 100644 --- a/t/lib/TestApp/Controller/Action/Regexp.pm +++ b/t/lib/TestApp/Controller/Action/Regexp.pm @@ -27,4 +27,9 @@ sub four : Action Regex('^action/regexp/redirect/(\w+)/universe/(\d+)/everything ); } +sub one_backslashes : Action Regex('^action/regexp/(\w+)/(\d+)\.html$') { + my ( $self, $c ) = @_; + $c->forward('TestApp::View::Dump::Request'); +} + 1;