X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction%2FInheritance.pm;h=6eae935f63526298c0d7f8b49062e8f922f1df45;hb=1f851263ba70ba7d398ed19b45eaaca482f5aaa3;hp=bed68e4d62a46c0babc12fe9456a926a7dcb9a73;hpb=a127b1987f6a2a69e0128fd51b7e989e7438c313;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Action/Inheritance.pm b/t/lib/TestApp/Controller/Action/Inheritance.pm index bed68e4..6eae935 100644 --- a/t/lib/TestApp/Controller/Action/Inheritance.pm +++ b/t/lib/TestApp/Controller/Action/Inheritance.pm @@ -70,13 +70,5 @@ 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;