From 67723c1e4673253b2f4a2c7204ccab9d0daaaeb9 Mon Sep 17 00:00:00 2001 From: naruse Date: Fri, 19 May 2017 15:13:42 +0000 Subject: Net::HTTP#start now pass :ENV to p_addr by default [Bug #13351] To avoid this, pass nil explicitly. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58798 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/http/test_http.rb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'test') diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb index 7db5909f96..13d1803aa9 100644 --- a/test/net/http/test_http.rb +++ b/test/net/http/test_http.rb @@ -233,6 +233,23 @@ end module TestNetHTTP_version_1_1_methods + def test_s_start + h = Net::HTTP.start(config('host'), config('port')) + assert_equal config('host'), h.address + assert_equal config('port'), h.port + assert_equal true, h.instance_variable_get(:@proxy_from_env) + + h = Net::HTTP.start(config('host'), config('port'), :ENV) + assert_equal config('host'), h.address + assert_equal config('port'), h.port + assert_equal true, h.instance_variable_get(:@proxy_from_env) + + h = Net::HTTP.start(config('host'), config('port'), nil) + assert_equal config('host'), h.address + assert_equal config('port'), h.port + assert_equal false, h.instance_variable_get(:@proxy_from_env) + end + def test_s_get assert_equal $test_net_http_data, Net::HTTP.get(config('host'), '/', config('port')) -- cgit v1.2.3