changeset 285:484b713f57b0

Tests: remove perl.t TODO checks.
author Maxim Dounin <mdounin@mdounin.ru>
date Sat, 11 May 2013 21:03:59 +0400
parents 8fcc46212e5e
children f62137d1b5b1
files perl.t
diffstat 1 files changed, 0 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/perl.t
+++ b/perl.t
@@ -107,9 +107,6 @@ like(http(
 	body => '1234567890'
 ), qr/body: 1234567890/, 'perl body late');
 
-TODO: {
-local $TODO = 'broken' if $t->has_version('1.3.9');
-
 like(http(
 	'GET /body HTTP/1.0' . CRLF
 	. 'Host: localhost' . CRLF
@@ -119,11 +116,6 @@ like(http(
 	body => '67890'
 ), qr/body: 1234567890/, 'perl body split');
 
-}
-
-TODO: {
-local $TODO = 'not yet';
-
 like(http(
 	'GET /body HTTP/1.1' . CRLF
 	. 'Host: localhost' . CRLF
@@ -154,6 +146,4 @@ like(http(
 	body => '67890' . CRLF . '0' . CRLF . CRLF
 ), qr/body: 1234567890/, 'perl body chunked split');
 
-}
-
 ###############################################################################