Test uri_for with path = 0
[catagits/Catalyst-Runtime.git] / t / aggregate / live_engine_response_emptybody.t
index 825b48a..e4f407c 100644 (file)
@@ -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;