<feed xmlns='http://www.w3.org/2005/Atom'>
<title>ruby.git/test/net/http/test_http_request.rb, branch v3_4_9</title>
<subtitle>The Ruby Programming Language</subtitle>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/'/>
<entry>
<title>Sync test_http_request.rb after fix to net-http</title>
<updated>2021-11-15T17:31:44+00:00</updated>
<author>
<name>Jeremy Evans</name>
<email>code@jeremyevans.net</email>
</author>
<published>2021-11-15T17:31:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=fceaa6886b8b33f5c083b1b924b8578ecd32142a'/>
<id>fceaa6886b8b33f5c083b1b924b8578ecd32142a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/net-http] Fix tests after change to allow HEAD to send Accept-Encoding</title>
<updated>2021-11-15T17:21:57+00:00</updated>
<author>
<name>Jeremy Evans</name>
<email>code@jeremyevans.net</email>
</author>
<published>2021-11-15T17:15:45+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f1c3fc273d026a14b52fe996a66b6042eddb8a27'/>
<id>f1c3fc273d026a14b52fe996a66b6042eddb8a27</id>
<content type='text'>
https://github.com/ruby/net-http/commit/ca7bb8c51c
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/net-http/commit/ca7bb8c51c
</pre>
</div>
</content>
</entry>
<entry>
<title>quick fix for `test_initialize_HEAD`</title>
<updated>2021-11-11T09:04:00+00:00</updated>
<author>
<name>Koichi Sasada</name>
<email>ko1@atdot.net</email>
</author>
<published>2021-11-11T09:01:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=b5531adf4160304ca62b7d128af458704c9beb4e'/>
<id>b5531adf4160304ca62b7d128af458704c9beb4e</id>
<content type='text'>
https://github.com/ruby/ruby/commit/52ab9bbee918c63faad32e3851b162691b984d40 makes a failure.

```
  1) Failure:
HTTPRequestTest#test_initialize_HEAD [/tmp/ruby/v3/src/trunk/test/net/http/test_http_request.rb:53]:
&lt;{"accept"=&gt;["*/*"], "user-agent"=&gt;["Ruby"]}&gt; expected but was
&lt;{"accept-encoding"=&gt;["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],
 "accept"=&gt;["*/*"],
 "user-agent"=&gt;["Ruby"]}&gt;.
```

I'm not sure it is correct, so please review later.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://github.com/ruby/ruby/commit/52ab9bbee918c63faad32e3851b162691b984d40 makes a failure.

```
  1) Failure:
HTTPRequestTest#test_initialize_HEAD [/tmp/ruby/v3/src/trunk/test/net/http/test_http_request.rb:53]:
&lt;{"accept"=&gt;["*/*"], "user-agent"=&gt;["Ruby"]}&gt; expected but was
&lt;{"accept-encoding"=&gt;["gzip;q=1.0,deflate;q=0.6,identity;q=0.3"],
 "accept"=&gt;["*/*"],
 "user-agent"=&gt;["Ruby"]}&gt;.
```

I'm not sure it is correct, so please review later.
</pre>
</div>
</content>
</entry>
<entry>
<title>[ruby/net-http] Do not require stringio</title>
<updated>2021-05-06T06:58:41+00:00</updated>
<author>
<name>Kazuki Yamaguchi</name>
<email>k@rhe.jp</email>
</author>
<published>2021-04-29T12:35:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=364044e0909692315bd6c2f0e1d968ede9c2beb8'/>
<id>364044e0909692315bd6c2f0e1d968ede9c2beb8</id>
<content type='text'>
It is not used in net/http library code since commit 15ccd0118c13
(r36473 in ruby svn trunk, 2012).

require's in test suite are also cleaned up.

https://github.com/ruby/net-http/commit/996d18a43f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is not used in net/http library code since commit 15ccd0118c13
(r36473 in ruby svn trunk, 2012).

require's in test suite are also cleaned up.

https://github.com/ruby/net-http/commit/996d18a43f
</pre>
</div>
</content>
</entry>
<entry>
<title>Adding missing test for Net::HTTPGenericRequest initializer (#1835)</title>
<updated>2019-08-15T16:38:46+00:00</updated>
<author>
<name>Espartaco Palma</name>
<email>esparta@gmail.com</email>
</author>
<published>2019-08-15T16:38:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=2665e5858f76e07ea8748a1931f500f961c5ceae'/>
<id>2665e5858f76e07ea8748a1931f500f961c5ceae</id>
<content type='text'>
A new exception is raised if an URI::HTTP is received and that object doesn't
have a hostname property.
Complementary to #1278</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
A new exception is raised if an URI::HTTP is received and that object doesn't
have a hostname property.
Complementary to #1278</pre>
</div>
</content>
</entry>
<entry>
<title>Raise ArgumentError if host component is nil</title>
<updated>2018-03-08T16:07:54+00:00</updated>
<author>
<name>naruse</name>
<email>naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2018-03-08T16:07:54+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=0f7b26ab4e2922e767d730084cc29f713e05d126'/>
<id>0f7b26ab4e2922e767d730084cc29f713e05d126</id>
<content type='text'>
From: oss92 &lt;mohamed.o.alnagdy@gmail.com&gt;
fix https://github.com/ruby/ruby/pull/1278

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
From: oss92 &lt;mohamed.o.alnagdy@gmail.com&gt;
fix https://github.com/ruby/ruby/pull/1278

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>test: use assert_not_*</title>
<updated>2016-02-19T07:45:58+00:00</updated>
<author>
<name>nobu</name>
<email>nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2016-02-19T07:45:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=311b7154839b91c87ee40908ac6d3f5c330d7b11'/>
<id>311b7154839b91c87ee40908ac6d3f5c330d7b11</id>
<content type='text'>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53871 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>Add frozen_string_literal: false for all files</title>
<updated>2015-12-16T05:07:31+00:00</updated>
<author>
<name>naruse</name>
<email>naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2015-12-16T05:07:31+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=3e92b635fb5422207b7bbdc924e292e51e21f040'/>
<id>3e92b635fb5422207b7bbdc924e292e51e21f040</id>
<content type='text'>
When you change this to true, you may need to add more tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When you change this to true, you may need to add more tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53141 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* lib/net/http.rb:  Removed OpenSSL dependency from Net::HTTP.</title>
<updated>2013-02-14T05:32:58+00:00</updated>
<author>
<name>drbrain</name>
<email>drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2013-02-14T05:32:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=64db9dcbd5451f5f3ad4ef69662311a7cbb44a95'/>
<id>64db9dcbd5451f5f3ad4ef69662311a7cbb44a95</id>
<content type='text'>
* test/net/http/test_http.rb:  Remove Zlib dependency from tests.
* test/net/http/test_http_request.rb:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* test/net/http/test_http.rb:  Remove Zlib dependency from tests.
* test/net/http/test_http_request.rb:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39238 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
<entry>
<title>* lib/net/http:  Do not handle Content-Encoding when the user sets</title>
<updated>2013-02-14T01:08:19+00:00</updated>
<author>
<name>drbrain</name>
<email>drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e</email>
</author>
<published>2013-02-14T01:08:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.ruby-lang.org/ruby.git/commit/?id=f58d39807541d8f50ba682183ab9097ddcb52698'/>
<id>f58d39807541d8f50ba682183ab9097ddcb52698</id>
<content type='text'>
  Accept-Encoding.  This allows users to handle Content-Encoding for
  themselves.  This restores backwards-compatibility with Ruby 1.x.
* lib/net/http/generic_request.rb:  ditto.
* lib/net/http/response.rb:  ditto
* test/net/http/test_http.rb:  Test for the above.
* test/net/http/test_http_request.rb:  ditto.
* test/net/http/test_httpresponse.rb:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  Accept-Encoding.  This allows users to handle Content-Encoding for
  themselves.  This restores backwards-compatibility with Ruby 1.x.
* lib/net/http/generic_request.rb:  ditto.
* lib/net/http/response.rb:  ditto
* test/net/http/test_http.rb:  Test for the above.
* test/net/http/test_http_request.rb:  ditto.
* test/net/http/test_httpresponse.rb:  ditto.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39232 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
</pre>
</div>
</content>
</entry>
</feed>
