summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-20 03:01:49 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-11-20 03:01:49 +0000
commitee1029cb7f040405c1e249bbbd5806f509ef39e1 (patch)
tree7488be148eb3483b590e518ba401cc4be090e2ce /test
parent6591e380169e85e7764150e3a93722ca990ee05d (diff)
* test/drb/test_drb.rb: rename TestRubyYield to TestDRbRubyYield to
avoid name crash with test/ruby/test_yield.rb. TestRuby18Yield is renamed to TestDRbRuby18Yield too. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/drb/test_drb.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/drb/test_drb.rb b/test/drb/test_drb.rb
index 5719f60b80..1aecf74e44 100644
--- a/test/drb/test_drb.rb
+++ b/test/drb/test_drb.rb
@@ -113,7 +113,7 @@ class TestDRbYield < Test::Unit::TestCase
end
end
-class TestRubyYield < TestDRbYield
+class TestDRbRubyYield < TestDRbYield
def echo_yield(*arg)
yield(*arg)
end
@@ -145,7 +145,7 @@ class TestRubyYield < TestDRbYield
end
end
-class TestRuby18Yield < TestRubyYield
+class TestDRbRuby18Yield < TestDRbRubyYield
class YieldTest18
def echo_yield(*arg, &proc)
proc.call(*arg)