1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

unset HTTP_PROXY, etc.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26064 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-12-10 10:26:55 +00:00
parent e82e2beb7c
commit 136c25ebf0

View file

@ -35,7 +35,7 @@ class TestOpenURISSL < Test::Unit::TestCase
end
def setup
@proxies = %w[http_proxy https_proxy ftp_proxy no_proxy]
@proxies = %w[http_proxy HTTP_PROXY https_proxy HTTPS_PROXY ftp_proxy FTP_PROXY no_proxy]
@old_proxies = @proxies.map {|k| ENV[k] }
@proxies.each {|k| ENV[k] = nil }
end