diff options
| author | Hiroshi SHIBATA <hsbt@ruby-lang.org> | 2024-07-10 20:02:27 +0900 |
|---|---|---|
| committer | git <svn-admin@ruby-lang.org> | 2024-07-10 23:06:10 +0000 |
| commit | 840f7ebfde7232a818dd1ebb7efd073b6f883a05 (patch) | |
| tree | 8a90ac6a068bd8174ac2804b4254823fce63907e | |
| parent | 492b505d95440a5493d675002bebaeae550b43cd (diff) | |
[ruby/net-http] Commented out unfinished chunked test
https://github.com/ruby/net-http/commit/6376592cb4
| -rw-r--r-- | test/net/http/test_http.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb index fbf6e28a3e..9f3bd8b211 100644 --- a/test/net/http/test_http.rb +++ b/test/net/http/test_http.rb @@ -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 |
