Merged 5.49_01 (r1339) from refactored branch to trunk
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action / Path.pm
1 package TestApp::Controller::Action::Path;
2
3 use strict;
4 use base 'TestApp::Controller::Action';
5
6 sub one : Action Path("a path with spaces") {
7     my ( $self, $c ) = @_;
8     $c->forward('TestApp::View::Dump::Request');
9 }
10
11 sub two : Action Path("åäö") {
12     my ( $self, $c ) = @_;
13     $c->forward('TestApp::View::Dump::Request');
14 }
15
16 1;