Remove use of Catalyst::Base from the tests
[catagits/Catalyst-Runtime.git] / t / lib / TestApp / Controller / Engine / Response / Large.pm
CommitLineData
c7ded7aa 1package TestApp::Controller::Engine::Response::Large;
2
3use strict;
c057ae86 4use base 'Catalyst::Controller';
c7ded7aa 5
6sub one : Relative {
7 my ( $self, $c ) = @_;
8 $c->res->output( 'x' x (100 * 1024) );
9}
10
11sub two : Relative {
12 my ( $self, $c ) = @_;
13 $c->res->output( 'y' x (1024 * 1024) );
14}
15
161;