# HG changeset patch # User Maxim Dounin # Date 1374594315 -14400 # Node ID f36c3532a1179d207987423bdb5c9911d641922a # Parent 03975bffc3682babd2729baffae98d08ba8c6d48 Tests: perl and proxy_set_body fixes merged, remove TODO. diff --git a/perl.t b/perl.t --- 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( diff --git a/proxy_set_body.t b/proxy_set_body.t --- 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'); -} - ###############################################################################