Bump version requirement for MX::Emulate::CAF to the new release which fixes the...
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Chained / ParentChain.pm
CommitLineData
0e853a7f 1package TestApp::Controller::Action::Chained::ParentChain;
2use warnings;
3use strict;
4
5use base qw/ Catalyst::Controller /;
6
7#
8# Chains to the action /action/chained/parentchain in the
9# Action::Chained controller.
10#
11sub child :Chained('.') :Args(1) { }
12
131;