X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F08cookies.t;fp=t%2F08cookies.t;h=0000000000000000000000000000000000000000;hb=5a8fd7e9d4cca2af0237e1659f061cc64618bfe6;hp=833f28ab2e6f1458e3445353e944a1f944fdb572;hpb=b76d7db825981c235ff6cfa02b3d393424eaea0e;p=catagits%2FCatalyst-Runtime.git diff --git a/t/08cookies.t b/t/08cookies.t deleted file mode 100644 index 833f28a..0000000 --- a/t/08cookies.t +++ /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/ );