Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Action.pm
diff --git a/t/live/lib/TestApp/Controller/Action.pm b/t/live/lib/TestApp/Controller/Action.pm
deleted file mode 100644 (file)
index 02bd50a..0000000
+++ /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;