X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Flive%2Flib%2FTestApp%2FController%2FAction.pm;fp=t%2Flive%2Flib%2FTestApp%2FController%2FAction.pm;h=0000000000000000000000000000000000000000;hp=02bd50ac3c1868ee8b9047d15b107ef68788520e;hb=66741f94ac93b7ba0989db3556d0e3fe36c1be87;hpb=587b0f5882d4f5e128ae082758da37b065a3efde diff --git a/t/live/lib/TestApp/Controller/Action.pm b/t/live/lib/TestApp/Controller/Action.pm deleted file mode 100644 index 02bd50a..0000000 --- a/t/live/lib/TestApp/Controller/Action.pm +++ /dev/null @@ -1,17 +0,0 @@ -package TestApp::Controller::Action; - -use strict; -use base 'Catalyst::Controller'; - -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;