summaryrefslogtreecommitdiff
path: root/test/ruby/test_path.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-02 21:25:18 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-06-02 21:25:18 +0000
commit54fe5bf6e7209a99d9a3565b12efe1be751b349d (patch)
treef0e3397faead93d93184a77b2784285bb9754d52 /test/ruby/test_path.rb
parent18b4480e31e83d6dfb0283075698613e0f852fa7 (diff)
* test/ruby/test_path.rb (test_path): get rid of blocking on
access to non-existent host. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28135 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_path.rb')
-rw-r--r--test/ruby/test_path.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/ruby/test_path.rb b/test/ruby/test_path.rb
index 606575e4ba..ad080fa444 100644
--- a/test/ruby/test_path.rb
+++ b/test/ruby/test_path.rb
@@ -35,8 +35,8 @@ class TestPath < Test::Unit::TestCase
assert_equal("/sub", File.expand_path("sub", "/"))
end
if dosish
- assert_equal("//machine/share", File.expand_path("/", "//machine/share/sub"))
- assert_equal("//machine/share/dir", File.expand_path("/dir", "//machine/share/sub"))
+ assert_equal("//127.0.0.1/share", File.expand_path("/", "//127.0.0.1/share/sub"))
+ assert_equal("//127.0.0.1/share/dir", File.expand_path("/dir", "//127.0.0.1/share/sub"))
assert_equal("z:/", File.expand_path("/", "z:/sub"))
assert_equal("z:/dir", File.expand_path("/dir", "z:/sub"))
end