[ruby/net-http] Commented out unfinished chunked test

https://github.com/ruby/net-http/commit/6376592cb4
This commit is contained in:
Hiroshi SHIBATA 2024-07-10 20:02:27 +09:00 коммит произвёл git
Родитель 492b505d95
Коммит 840f7ebfde
1 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -915,10 +915,11 @@ __EOM__
header)
assert_equal(expected, body)
data.each{|k,v|v.rewind rescue nil}
req['Transfer-Encoding'] = 'chunked'
res = http.request req
#assert_equal(expected, res.body)
# TODO: test with chunked
# data.each{|k,v|v.rewind rescue nil}
# req['Transfer-Encoding'] = 'chunked'
# res = http.request req
# assert_equal(expected, res.body)
}
}
end