X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FView%2FDump%2FResponse.pm;fp=t%2Flib%2FTestApp%2FView%2FDump%2FResponse.pm;h=010d01c10583da3bfefb651dffca0bd79d9e4be9;hb=dd4e6fd2152eea9f5b0c1f559575ced7684ef257;hp=0000000000000000000000000000000000000000;hpb=424b2705f759cef65acfaf8ea0f43e6bef75b534;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/View/Dump/Response.pm b/t/lib/TestApp/View/Dump/Response.pm new file mode 100644 index 0000000..010d01c --- /dev/null +++ b/t/lib/TestApp/View/Dump/Response.pm @@ -0,0 +1,11 @@ +package TestApp::View::Dump::Response; + +use strict; +use base qw[TestApp::View::Dump]; + +sub process { + my ( $self, $c ) = @_; + return $self->SUPER::process( $c, $c->response ); +} + +1;