From #catalyst-dev before
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Action / Inheritance.pm
index 6eae935..bed68e4 100644 (file)
@@ -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;