optional PathPart and PathPart+Args tests for ChildOf
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / ChildOf / Bar.pm
CommitLineData
d416846e 1package TestApp::Controller::Action::ChildOf::Bar;
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#
12sub cross1 :PathPart('childof/cross') :Captures(1) :ChildOf('/') { }
13
141;