changeset 316:f36c3532a117

Tests: perl and proxy_set_body fixes merged, remove TODO.
author Maxim Dounin <mdounin@mdounin.ru>
date Tue, 23 Jul 2013 19:45:15 +0400
parents 03975bffc368
children a9621dbbd0d4
files perl.t proxy_set_body.t
diffstat 2 files changed, 0 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/perl.t
+++ b/perl.t
@@ -110,9 +110,6 @@ like(http(
 	. 'Host: localhost' . CRLF . CRLF
 ), qr/xfoo: foo/, 'perl header_in unknown');
 
-TODO: {
-local $TODO = 'broken in 1.3.14' unless $t->has_version('1.5.2');
-
 like(http(
 	'GET / HTTP/1.0' . CRLF
 	. 'Cookie: foo' . CRLF
@@ -139,8 +136,6 @@ like(http(
 	. 'Host: localhost' . CRLF . CRLF
 ), qr/xff: foo1, foo2/, 'perl header_in xff2');
 
-}
-
 # various request body tests
 
 like(http(
--- a/proxy_set_body.t
+++ b/proxy_set_body.t
@@ -76,12 +76,6 @@ EOF
 ###############################################################################
 
 like(http_get('/'), qr/X-Body: body/, 'proxy_set_body');
-
-TODO: {
-local $TODO = 'not yet' unless $t->has_version('1.5.1');
-
 like(http_get('/p1'), qr/X-Body: body two/, 'proxy_set_body twice');
 
-}
-
 ###############################################################################