X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FEngine%2FResponse%2FLarge.pm;fp=t%2Flib%2FTestApp%2FController%2FEngine%2FResponse%2FLarge.pm;h=0000000000000000000000000000000000000000;hb=f436bc1bece2bcc2a04138068e5c22e70d9d6d35;hp=75d4ef37c3e01594ec6cc0d1a2e901d8acdab32c;hpb=e28a6876ad3e11890226e5bab6df4b0725e0981e;p=catagits%2FCatalyst-Runtime.git diff --git a/t/lib/TestApp/Controller/Engine/Response/Large.pm b/t/lib/TestApp/Controller/Engine/Response/Large.pm deleted file mode 100644 index 75d4ef3..0000000 --- a/t/lib/TestApp/Controller/Engine/Response/Large.pm +++ /dev/null @@ -1,16 +0,0 @@ -package TestApp::Controller::Engine::Response::Large; - -use strict; -use base 'Catalyst::Controller'; - -sub one : Relative { - my ( $self, $c ) = @_; - $c->res->output( 'x' x (100 * 1024) ); -} - -sub two : Relative { - my ( $self, $c ) = @_; - $c->res->output( 'y' x (1024 * 1024) ); -} - -1;