ruby-changes:16073
From: usa <ko1@a...>
Date: Wed, 26 May 2010 17:26:08 +0900 (JST)
Subject: [ruby-changes:16073] Ruby:r28022 (ruby_1_9_2): merge from trunk (r28021)
usa 2010-05-26 17:26:02 +0900 (Wed, 26 May 2010) New Revision: 28022 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=28022 Log: merge from trunk (r28021) * test/open-uri/test_open-uri.rb (test_find_proxy_case_sensitive_env): environment variable name is not case sensitive on Windows Modified files: branches/ruby_1_9_2/test/open-uri/test_open-uri.rb Index: ruby_1_9_2/test/open-uri/test_open-uri.rb =================================================================== --- ruby_1_9_2/test/open-uri/test_open-uri.rb (revision 28021) +++ ruby_1_9_2/test/open-uri/test_open-uri.rb (revision 28022) @@ -518,6 +518,7 @@ end def test_find_proxy_case_sensitive_env + skip "environment variable name is not case sensitive on Windows" if RUBY_PLATFORM =~ /mswin|mingw/ with_env('http_proxy'=>'http://127.0.0.1:8080', 'REQUEST_METHOD'=>'GET') { assert_equal(URI('http://127.0.0.1:8080'), URI("http://192.0.2.1/").find_proxy) } -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/