More tests for ChildOf
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / ChildOf / Bar.pm
1 package TestApp::Controller::Action::ChildOf::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('childof/cross') :Captures(1) :ChildOf('/') { }
13
14 1;