auto/forward/detach tests for Chained
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / Auto / Foo.pm
CommitLineData
2349aeea 1package TestApp::Controller::Action::Chained::Auto::Foo;
2use warnings;
3use strict;
4
5use base qw( Catalyst::Controller );
6
7#
8# Test chain reaction if auto action returns 1.
9#
10sub auto : Private { 1 }
11
12sub fooend : Chained('.') Args(1) { }
13
14sub crossend : Chained('/action/chained/auto/bar/crossloose') Args(1) { }
15
161;