add tests which prove the current behavior of not decoding chained args but decoding...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Local.pm
CommitLineData
e5d7f18c 1package TestApp::Controller::Action::Local;
dd4e6fd2 2
3use strict;
4use base 'TestApp::Controller::Action';
5
6sub one : Action Relative {
7 my ( $self, $c ) = @_;
8 $c->forward('TestApp::View::Dump::Request');
9}
10
4082e678 11sub two : Action Local Args(2) {
dd4e6fd2 12 my ( $self, $c ) = @_;
13 $c->forward('TestApp::View::Dump::Request');
14}
15
16sub three : Action Path('three') {
17 my ( $self, $c ) = @_;
18 $c->forward('TestApp::View::Dump::Request');
19}
20
21sub four : Action Path('four/five/six') {
22 my ( $self, $c ) = @_;
23 $c->forward('TestApp::View::Dump::Request');
24}
25
2c527b91 26sub five : Action Local Args(1) {
27 my ( $self, $c ) = @_;
28 $c->forward('TestApp::View::Dump::Request');
29}
30
dd4e6fd2 311;