X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FPath.pm;fp=t%2Flib%2FTestApp%2FController%2FAction%2FPath.pm;h=2c19f0e17069b2ec0ca062e47d5c56c576ce7fca;hb=dd4e6fd2152eea9f5b0c1f559575ced7684ef257;hp=0000000000000000000000000000000000000000;hpb=424b2705f759cef65acfaf8ea0f43e6bef75b534;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Path.pm b/t/lib/TestApp/Controller/Action/Path.pm new file mode 100644 index 0000000..2c19f0e --- /dev/null +++ b/t/lib/TestApp/Controller/Action/Path.pm @@ -0,0 +1,16 @@ +package TestApp::Controller::Action::Path; + +use strict; +use base 'TestApp::Controller::Action'; + +sub one : Action Path("a path with spaces") { + my ( $self, $c ) = @_; + $c->forward('TestApp::View::Dump::Request'); +} + +sub two : Action Path("åäö") { + my ( $self, $c ) = @_; + $c->forward('TestApp::View::Dump::Request'); +} + +1;