1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

require drb/eq.rb by default

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@5841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
seki 2004-02-26 16:08:36 +00:00
parent fb18f7c5f6
commit 92d34f3619
3 changed files with 5 additions and 4 deletions

View file

@ -140,10 +140,6 @@ module DRbCore
a = @there.to_a[0]
b = @there.to_a[0]
assert(a.object_id != b.object_id)
assert(a != b)
assert(a.hash != b.hash)
assert(! a.eql?(b))
require 'drb/eq'
assert(a == b)
assert_equal(a, b)
assert(a == @there)