X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flive%2Flib%2FTestApp%2FController%2FAction%2FEnd.pm;fp=t%2Flive%2Flib%2FTestApp%2FController%2FAction%2FEnd.pm;h=f18f87178fca1798ce2f305b285f4c55cb0a6563;hb=fbcc39ad23f2bbecf5d84c9ba581e6af86fcd460;hp=0000000000000000000000000000000000000000;hpb=21465c884872c1ec8c30acd72796445f9eaacb31;p=catagits%2FCatalyst-Runtime.git diff --git a/t/live/lib/TestApp/Controller/Action/End.pm b/t/live/lib/TestApp/Controller/Action/End.pm new file mode 100644 index 0000000..f18f871 --- /dev/null +++ b/t/live/lib/TestApp/Controller/Action/End.pm @@ -0,0 +1,15 @@ +package TestApp::Controller::Action::End; + +use strict; +use base 'TestApp::Controller::Action'; + +sub end : Private { + my ( $self, $c ) = @_; +} + +sub default : Private { + my ( $self, $c ) = @_; + $c->forward('TestApp::View::Dump::Request'); +} + +1;