* test/ruby/test_range.rb (TestRange#test_comparison_when_recursive):

test for r25010.

* test/ruby/test_struct.rb (TestStruct#test_comparison_when_recursive):
  ditto.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@25933 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
yugui 2009-11-26 12:17:47 +00:00
Родитель 303b1d7fad
Коммит 21c32a3c7a
3 изменённых файлов: 72 добавлений и 0 удалений

Просмотреть файл

@ -1,3 +1,11 @@
Thu Nov 26 21:08:54 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* test/ruby/test_range.rb (TestRange#test_comparison_when_recursive):
test for r25010.
* test/ruby/test_struct.rb (TestStruct#test_comparison_when_recursive):
ditto.
Thu Nov 26 20:18:02 2009 NARUSE, Yui <naruse@ruby-lang.org>
* gem_prelude.rb (Gem.set_home): must dup before force_encoding

Просмотреть файл

@ -1,5 +1,6 @@
require 'test/unit'
require 'delegate'
require 'timeout'
class TestRange < Test::Unit::TestCase
def test_range_string
@ -294,4 +295,37 @@ class TestRange < Test::Unit::TestCase
o.instance_eval { initialize(o, 1) }
assert_equal("(... .. ...)..1", o.inspect)
end
def test_comparison_when_recursive
x = CyclicRange.allocate; x.send(:initialize, x, 1)
y = CyclicRange.allocate; y.send(:initialize, y, 1)
Timeout.timeout(1) {
assert x == y
assert x.eql? y
}
z = CyclicRange.allocate; z.send(:initialize, z, :another)
Timeout.timeout(1) {
assert x != z
assert !x.eql?(z)
}
x = CyclicRange.allocate
y = CyclicRange.allocate
x.send(:initialize, y, 1)
y.send(:initialize, x, 1)
Timeout.timeout(1) {
assert x == y
assert x.eql?(y)
}
x = CyclicRange.allocate
z = CyclicRange.allocate
x.send(:initialize, z, 1)
z.send(:initialize, x, :other)
Timeout.timeout(1) {
assert x != z
assert !x.eql?(z)
}
end
end

Просмотреть файл

@ -1,4 +1,5 @@
require 'test/unit'
require 'timeout'
class TestStruct < Test::Unit::TestCase
def test_struct
@ -219,4 +220,33 @@ class TestStruct < Test::Unit::TestCase
a = struct_test.new(42)
assert_equal("#<struct Struct::R\u{e9}sum\u{e9} r\u{e9}sum\u{e9}=42>", a.inspect, '[ruby-core:24849]')
end
def test_comparison_when_recursive
klass1 = Struct.new(:a, :b, :c)
x = klass1.new(1, 2, nil); x.c = x
y = klass1.new(1, 2, nil); y.c = y
Timeout.timeout(1) {
assert x == y
assert x.eql? y
}
z = klass1.new(:something, :other, nil); z.c = z
Timeout.timeout(1) {
assert x != z
assert !x.eql?(z)
}
x.c = y; y.c = x
Timeout.timeout(1) {
assert x == y
assert x.eql?(y)
}
x.c = z; z.c = x
Timeout.timeout(1) {
assert x != z
assert !x.eql?(z)
}
end
end