X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flib%2FTestApp%2FController%2FAction.pm;fp=t%2Flib%2FTestApp%2FController%2FAction.pm;h=0000000000000000000000000000000000000000;hp=b745e8277adb659bac655e99adaa4acf6c9e1b4e;hb=fbcc39ad23f2bbecf5d84c9ba581e6af86fcd460;hpb=21465c884872c1ec8c30acd72796445f9eaacb31 diff --git a/t/lib/TestApp/Controller/Action.pm b/t/lib/TestApp/Controller/Action.pm deleted file mode 100644 index b745e82..0000000 --- a/t/lib/TestApp/Controller/Action.pm +++ /dev/null @@ -1,17 +0,0 @@ -package TestApp::Controller::Action; - -use strict; -use base 'Catalyst::Base'; - -sub begin : Private { - my ( $self, $c ) = @_; - $c->res->header( 'X-Test-Class' => ref($self) ); - $c->response->content_type('text/plain; charset=utf-8'); -} - -sub default : Private { - my ( $self, $c ) = @_; - $c->res->output("Error - TestApp::Controller::Action\n"); -} - -1;