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