diff options
author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-03-25 02:50:17 +0000 |
---|---|---|
committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-03-25 02:50:17 +0000 |
commit | d81591607172afe8c92e6de72f7fa515aaa3d0bf (patch) | |
tree | 599fba3c99c04f927663f70b43ea0e6956818834 /test/open-uri | |
parent | 5f6bb0dc64832f36c32cc4c02e0c8a08cc68317c (diff) | |
download | ruby-d81591607172afe8c92e6de72f7fa515aaa3d0bf.tar.gz |
* test/ruby/test_process.rb (TestProcess#test_no_curdir): skip silently on
Windows, because this tests a platform specific feature and it'll never be
supported on ruby on Windows.
* test/ruby/test_dir_m17n.rb (TestDir_M17N#test_filename_extutf8_invalid,
TestDir_M17N#test_filename_as_bytes_extutf8): ditto.
* test/open-uri/test_open-uri.rb
(TestOpenURI#test_find_proxy_case_sensitive_env): ditto.
* test/dl/test_handle.rb (DL::TestHandle#test_NEXT,
DL::TestHandle#test_DEFAULT): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31174 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/open-uri')
-rw-r--r-- | test/open-uri/test_open-uri.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/open-uri/test_open-uri.rb b/test/open-uri/test_open-uri.rb index 14f08ffd98..5f501d16cc 100644 --- a/test/open-uri/test_open-uri.rb +++ b/test/open-uri/test_open-uri.rb @@ -522,7 +522,6 @@ class TestOpenURI < Test::Unit::TestCase 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) } @@ -532,7 +531,7 @@ class TestOpenURI < Test::Unit::TestCase with_env('http_proxy'=>'http://127.0.0.1:8080', 'HTTP_PROXY'=>'http://127.0.0.1:8081', 'REQUEST_METHOD'=>'GET') { assert_equal(URI('http://127.0.0.1:8080'), URI("http://192.0.2.1/").find_proxy) } - end + end unless RUBY_PLATFORM =~ /mswin|mingw/ def test_ftp_invalid_request assert_raise(ArgumentError) { URI("ftp://127.0.0.1/").read } |