first pass at not streaming via the catalyst app, but instead allow the underlying...
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_response_emptybody.t
index beb83fe..e4f407c 100644 (file)
@@ -18,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;