changeset 176:847811d5192c

Tests: 201 replies fixed in 1.1.5, remove TODO.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 01 Nov 2011 21:03:53 +0300
parents b5352cabdadb
children 89d3041856b3
files dav.t
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/dav.t
+++ b/dav.t
@@ -101,12 +101,7 @@ like($r, qr/201 Created.*(Content-Length
 is(-s $t->testdir() . '/file', 10,
 	'put file extra data size');
 
-TODO: {
-local $TODO = 'broken in 0.8.32';
-
 # 201 replies contain body, response should indicate it's empty
-# before 0.8.32 chunked was explicitly disabled for 201 replies so
-# connection was just closed (which isn't perfect but worked)
 
 $r = http(<<EOF);
 MKCOL /test/ HTTP/1.1
@@ -136,6 +131,5 @@ Connection: close
 EOF
 
 like($r, qr/201.*(Content-Length|\x0d\0a0\x0d\x0a)/ms, 'move dir');
-}
 
 ###############################################################################