Switched to Module::Install
[catagits/Catalyst-Runtime.git] / t / live / lib / TestApp / Controller / Engine / Response / Headers.pm
diff --git a/t/live/lib/TestApp/Controller/Engine/Response/Headers.pm b/t/live/lib/TestApp/Controller/Engine/Response/Headers.pm
deleted file mode 100644 (file)
index a93fe31..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-package TestApp::Controller::Engine::Response::Headers;
-
-use strict;
-use base 'Catalyst::Base';
-
-sub one : Relative {
-    my ( $self, $c ) = @_;
-    $c->res->header( 'X-Header-Catalyst' => 'Cool' );
-    $c->res->header( 'X-Header-Cool'     => 'Catalyst' );
-    $c->res->header( 'X-Header-Numbers'  => join ', ', 1 .. 10 );
-    $c->forward('TestApp::View::Dump::Request');
-}
-
-1;