aboutsummaryrefslogtreecommitdiffstats
path: root/test/net
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-19 04:29:14 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-07-19 04:29:14 +0000
commitb72fc0953792a71f34b0eb3bb266feccf9c94974 (patch)
tree0d57205cdb8c2f792865ab3d6d488d43824e4035 /test/net
parent8e66cbccb7e4ded8b492557bb049ebe9b9d7fb1c (diff)
downloadruby-b72fc0953792a71f34b0eb3bb266feccf9c94974.tar.gz
* test/net/http/test_http.rb (TestNetHTTPLocalBind#test_bind_to_local*):
re-enable the tests because now it's OK on windows. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36460 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/net')
-rw-r--r--test/net/http/test_http.rb2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/net/http/test_http.rb b/test/net/http/test_http.rb
index 3cebcb0164..e390cf1e8d 100644
--- a/test/net/http/test_http.rb
+++ b/test/net/http/test_http.rb
@@ -628,7 +628,6 @@ class TestNetHTTPLocalBind < Test::Unit::TestCase
include TestNetHTTPUtils
def test_bind_to_local_host
- skip "cannot cross between network interfaces on Windows, so skip this test until we find better test." if /mswin|mingw/ =~ RUBY_PLATFORM
@server.mount_proc('/show_ip') { |req, res| res.body = req.remote_ip }
http = Net::HTTP.new(config('host'), config('port'))
@@ -641,7 +640,6 @@ class TestNetHTTPLocalBind < Test::Unit::TestCase
end
def test_bind_to_local_port
- skip "cannot cross between network interfaces on Windows, so skip this test until we find better test." if /mswin|mingw/ =~ RUBY_PLATFORM
@server.mount_proc('/show_port') { |req, res| res.body = req.peeraddr[1].to_s }
http = Net::HTTP.new(config('host'), config('port'))