X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FRegexp.pm;fp=t%2Flib%2FTestApp%2FController%2FAction%2FRegexp.pm;h=0000000000000000000000000000000000000000;hb=fbcc39ad23f2bbecf5d84c9ba581e6af86fcd460;hp=5413b6c3a768bfaeba86cbba11dacea7e803c693;hpb=21465c884872c1ec8c30acd72796445f9eaacb31;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Regexp.pm b/t/lib/TestApp/Controller/Action/Regexp.pm deleted file mode 100644 index 5413b6c..0000000 --- a/t/lib/TestApp/Controller/Action/Regexp.pm +++ /dev/null @@ -1,16 +0,0 @@ -package TestApp::Controller::Action::Regexp; - -use strict; -use base 'TestApp::Controller::Action'; - -sub one : Action Regexp('^action/regexp/(\w+)/(\d+)$') { - my ( $self, $c ) = @_; - $c->forward('TestApp::View::Dump::Request'); -} - -sub two : Action Regex('^action/regexp/(\d+)/(\w+)$') { - my ( $self, $c ) = @_; - $c->forward('TestApp::View::Dump::Request'); -} - -1;