X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=t%2Faggregate%2Flive_engine_response_emptybody.t;h=e4f407c38916ad01049e85323d4471615b1b65cb;hp=825b48ac585825b01acbd0ab6a11d76c516271e0;hb=7064f69b1dfb59d1f3bad647b2097d0320acce8a;hpb=ac057d3b3f09bb43ce8730fbc0b3a12a4be5c774 diff --git a/t/aggregate/live_engine_response_emptybody.t b/t/aggregate/live_engine_response_emptybody.t index 825b48a..e4f407c 100644 --- a/t/aggregate/live_engine_response_emptybody.t +++ b/t/aggregate/live_engine_response_emptybody.t @@ -1,5 +1,3 @@ -#!perl - use strict; use warnings; @@ -20,7 +18,11 @@ use Catalyst::Test 'TestApp'; { my $res = request('/emptybody'); is $res->content, ''; - ok !defined $res->header('Content-Length'); + + SKIP: { + skip "content-length for body of '' is now server dependent", 1; + ok !defined $res->header('Content-Length'); + } } done_testing;