Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Path.pm
CommitLineData
dd4e6fd2 1package TestApp::Controller::Action::Path;
2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub one : Action Path("a path with spaces") {
7 my ( $self, $c ) = @_;
8 $c->forward('TestApp::View::Dump::Request');
9}
10
11sub two : Action Path("åäö") {
12 my ( $self, $c ) = @_;
13 $c->forward('TestApp::View::Dump::Request');
14}
15
b74baa06 16sub three :Path {
17 my ( $self, $c ) = @_;
18 $c->forward('TestApp::View::Dump::Request');
19}
20
9e674714 21sub four : Path( 'spaces_near_parens_singleq' ) {
22 my ( $self, $c ) = @_;
23 $c->forward('TestApp::View::Dump::Request');
24}
25
26sub five : Path( "spaces_near_parens_doubleq" ) {
27 my ( $self, $c ) = @_;
28 $c->forward('TestApp::View::Dump::Request');
29}
30
dd4e6fd2 311;