diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-25 04:44:36 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-07-25 04:44:36 +0000 |
| commit | 4a43890fb440692bc9301059cff84eaf13c8b1b1 (patch) | |
| tree | 8ca4432cd0897c37d450a98f305897c7cbb567c8 /test/ruby | |
| parent | 4954ad969ca1b5eb7adaf1bd01926a67608c08a2 (diff) | |
| download | ruby-4a43890fb440692bc9301059cff84eaf13c8b1b1.tar.gz ruby-4a43890fb440692bc9301059cff84eaf13c8b1b1.tar.xz ruby-4a43890fb440692bc9301059cff84eaf13c8b1b1.zip | |
* complex.c (nucomp_hash), rational.c (nurat_hash): not to use
hash value of class so that equality against subclasses can
work. [ruby-dev:38850]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24270 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_complex.rb | 3 | ||||
| -rw-r--r-- | test/ruby/test_rational.rb | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/test/ruby/test_complex.rb b/test/ruby/test_complex.rb index ca26f45d2..6885294f8 100644 --- a/test/ruby/test_complex.rb +++ b/test/ruby/test_complex.rb @@ -36,6 +36,9 @@ class Complex_Test < Test::Unit::TestCase assert_instance_of(ComplexSub, c5) end + c1 = Complex(1) + assert_equal(c1.hash, c.hash, '[ruby-dev:38850]') + assert_equal([true, true], [c.eql?(c1), c1.eql?(c)]) end def test_eql_p diff --git a/test/ruby/test_rational.rb b/test/ruby/test_rational.rb index 85545fea6..82313db6b 100644 --- a/test/ruby/test_rational.rb +++ b/test/ruby/test_rational.rb @@ -35,6 +35,10 @@ class Rational_Test < Test::Unit::TestCase assert_equal(c, c5) assert_instance_of(RationalSub, c5) end + + c1 = Rational(1) + assert_equal(c1.hash, c.hash, '[ruby-dev:38850]') + assert_equal([true, true], [c.eql?(c1), c1.eql?(c)]) end def test_eql_p |
