optional PathPart and PathPart+Args tests for ChildOf
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / Bar.pm
1 package TestApp::Controller::Action::Chained::Bar;
2
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst::Controller/;
7
8 #
9 #   Redispatching between controllers that are not in a parent/child
10 #   relation. This is the root.
11 #
12 sub cross1 :PathPart('chained/cross') :Captures(1) :Chained('/') { }
13
14 1;