r12983@zaphod: kd | 2008-04-28 18:10:27 +1000
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / ParentChain / Relative.pm
1 package TestApp::Controller::Action::Chained::ParentChain::Relative;
2 use warnings;
3 use strict;
4
5 use base qw/ Catalyst::Controller /;
6
7 # using ../ to go up more than one level
8 sub chained_rel_two : Chained('../../one') Args(2) { }
9
10 1;