Captures -> CapureArgs
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / Bar.pm
CommitLineData
5882c86e 1package TestApp::Controller::Action::Chained::Bar;
d416846e 2
3use strict;
4use warnings;
5
6use base qw/Catalyst::Controller/;
7
8#
9# Redispatching between controllers that are not in a parent/child
10# relation. This is the root.
11#
1c34f703 12sub cross1 :PathPart('chained/cross') :CaptureArgs(1) :Chained('/') { }
d416846e 13
141;