mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
1cda105886
(test_equality): misdefinition of the expected working. Reported by an anonymous user. (test_hash): added. * test/matrix/test_vector.rb: ditto. Mon Sep 15 03:33:10 2008 Tanaka Akira <akr@fsij.org> git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19352 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
49 lines
1,005 B
Ruby
49 lines
1,005 B
Ruby
require 'test/unit'
|
|
require 'matrix'
|
|
|
|
class TestVector < Test::Unit::TestCase
|
|
def setup
|
|
@v1 = Vector[1,2,3]
|
|
@v2 = Vector[1,2,3]
|
|
@v3 = @v1.clone
|
|
@v4 = Vector[1.0, 2.0, 3.0]
|
|
@w1 = Vector[2,3,4]
|
|
end
|
|
|
|
def test_identity
|
|
assert_same @v1, @v1
|
|
assert_not_same @v1, @v2
|
|
assert_not_same @v1, @v3
|
|
assert_not_same @v1, @v4
|
|
assert_not_same @v1, @w1
|
|
end
|
|
|
|
def test_equality
|
|
assert_equal @v1, @v1
|
|
assert_equal @v1, @v2
|
|
assert_equal @v1, @v3
|
|
assert_equal @v1, @v4
|
|
assert_not_equal @v1, @w1
|
|
end
|
|
|
|
def test_hash_equality
|
|
assert @v1.eql?(@v1)
|
|
assert @v1.eql?(@v2)
|
|
assert @v1.eql?(@v3)
|
|
assert !@v1.eql?(@v4)
|
|
assert !@v1.eql?(@w1)
|
|
|
|
hash = { @v1 => :value }
|
|
assert hash.key?(@v1)
|
|
assert hash.key?(@v2)
|
|
assert hash.key?(@v3)
|
|
assert !hash.key?(@v4)
|
|
assert !hash.key?(@w1)
|
|
end
|
|
|
|
def test_hash
|
|
assert_equal @v1.hash, @v1.hash
|
|
assert_equal @v1.hash, @v2.hash
|
|
assert_equal @v1.hash, @v3.hash
|
|
end
|
|
end
|