X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FInheritance.pm;h=bed68e4d62a46c0babc12fe9456a926a7dcb9a73;hp=6eae935f63526298c0d7f8b49062e8f922f1df45;hb=a127b1987f6a2a69e0128fd51b7e989e7438c313;hpb=626053191a3ba8c5f4ac8bd831009e962842c469 diff --git a/t/lib/TestApp/Controller/Action/Inheritance.pm b/t/lib/TestApp/Controller/Action/Inheritance.pm index 6eae935..bed68e4 100644 --- a/t/lib/TestApp/Controller/Action/Inheritance.pm +++ b/t/lib/TestApp/Controller/Action/Inheritance.pm @@ -70,5 +70,13 @@ sub end : Private { my ( $self, $c ) = @_; } +package TestApp::Controller::Action::Inheritance::Chained; + +use strict; +use base qw/TestApp::ControllerBase::Middle TestApp::ControllerBase::RealMiddle/; + +sub chain_first : CaptureArgs(0) PathPart('') Chained('chain_root') {} + + 1;