Trying to unfuck this branch
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Engine / Response / Large.pm
diff --git a/t/lib/TestApp/Controller/Engine/Response/Large.pm b/t/lib/TestApp/Controller/Engine/Response/Large.pm
deleted file mode 100644 (file)
index 75d4ef3..0000000
+++ /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;