Chained Actions:
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / ArgsOrder.pm
CommitLineData
953c176d 1package TestApp::Controller::Action::Chained::ArgsOrder;
2use warnings;
3use strict;
4
5use base qw( Catalyst::Controller );
6
7#
8# This controller builds a simple chain of three actions that
9# will output the arguments they got passed to @_ after the
10# context object. We do this to test if that passing works
11# as it should.
12#
13
14sub base :Chained('/') PathPart('argsorder') CaptureArgs(0) {
15 my ( $self, $c, $arg ) = @_;
16 push @{ $c->stash->{ passed_args } }, 'base', $arg;
17}
18
19sub index :Chained('base') PathPart('') Args(0) {
20 my ( $self, $c, $arg ) = @_;
21 push @{ $c->stash->{ passed_args } }, 'index', $arg;
22}
23
24sub all :Chained('base') PathPart('') Args() {
25 my ( $self, $c, $arg ) = @_;
26 push @{ $c->stash->{ passed_args } }, 'all', $arg;
27}
28
29sub end : Private {
30 my ( $self, $c ) = @_;
31 no warnings 'uninitialized';
32 $c->response->body( join '; ', @{ $c->stash->{ passed_args } } );
33}
34
351;