:Chained and :Chained('.') tests
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / ParentChain.pm
1 package TestApp::Controller::Action::Chained::ParentChain;
2 use warnings;
3 use strict;
4
5 use base qw/ Catalyst::Controller /;
6
7 #
8 #   Chains to the action /action/chained/parentchain in the
9 #   Action::Chained controller.
10 #
11 sub child :Chained('.') :Args(1) { }
12
13 1;