added Test::Pod support
[catagits/Catalyst-Runtime.git] / t / 07headers.t
diff --git a/t/07headers.t b/t/07headers.t
deleted file mode 100644 (file)
index 70288f9..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package TestApp;
-
-use Catalyst qw[-Engine=Test];
-
-__PACKAGE__->action(
-    foo => sub {
-        my ( $self, $c ) = @_;
-        $c->res->headers->header( 'X-Foo' => 'Bar' );
-    }
-);
-
-package main;
-
-use Test::More tests => 1;
-use Catalyst::Test 'TestApp';
-
-ok( request('/foo')->header('X-Foo') );