X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FPath.pm;h=1c365378d5768ba2e74dbb8cf98ab6c14b9faf30;hb=bd917b94298b00325cb9db7551897c2471ca78ff;hp=2c19f0e17069b2ec0ca062e47d5c56c576ce7fca;hpb=dd4e6fd2152eea9f5b0c1f559575ced7684ef257;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Path.pm b/t/lib/TestApp/Controller/Action/Path.pm index 2c19f0e..1c36537 100644 --- a/t/lib/TestApp/Controller/Action/Path.pm +++ b/t/lib/TestApp/Controller/Action/Path.pm @@ -13,4 +13,19 @@ sub two : Action Path("åäö") { $c->forward('TestApp::View::Dump::Request'); } +sub three :Path { + my ( $self, $c ) = @_; + $c->forward('TestApp::View::Dump::Request'); +} + +sub four : Path( 'spaces_near_parens_singleq' ) { + my ( $self, $c ) = @_; + $c->forward('TestApp::View::Dump::Request'); +} + +sub five : Path( "spaces_near_parens_doubleq" ) { + my ( $self, $c ) = @_; + $c->forward('TestApp::View::Dump::Request'); +} + 1;