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/trunk@5840 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
seki 2004-02-26 15:56:40 +00:00
parent 3632100c64
commit 52e0246b61
3 changed files with 5 additions and 4 deletions

View file

@ -1,3 +1,7 @@
Fri Feb 27 00:53:49 2004 Masatoshi SEKI <m_seki@mva.biglobe.ne.jp>
* lib/drb/drb.rb, test/drb/drbtest.rb: require drb/eq.rb by default
Thu Feb 26 12:15:02 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* win32/win32.c (make_cmdvector): adjust successive double-quote

View file

@ -54,6 +54,7 @@
require 'socket'
require 'thread'
require 'fcntl'
require 'drb/eq'
#
# == Overview

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)