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