added Test::Pod support
[catagits/Catalyst-Runtime.git] / t / 08cookies.t
diff --git a/t/08cookies.t b/t/08cookies.t
deleted file mode 100644 (file)
index 833f28a..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-package TestApp;
-
-use Catalyst qw[-Engine=Test];
-
-__PACKAGE__->action(
-    foo => sub {
-        my ( $self, $c ) = @_;
-        $c->res->cookies->{foo} = { value => 'bar' };
-    }
-);
-
-package main;
-
-use Test::More tests => 1;
-use Catalyst::Test 'TestApp';
-
-ok( request('/foo')->header('Set-Cookie') =~ /bar/ );