From 65264eadbd3a8e1a3a96024e559a4a72d97c71e4 Mon Sep 17 00:00:00 2001 From: nahi Date: Fri, 5 Sep 2003 11:28:27 +0000 Subject: * test/ruby/test_*.rb: replace 'assert(a == b)' with assert_equal(a, b)' git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4512 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_hash.rb | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'test/ruby/test_hash.rb') diff --git a/test/ruby/test_hash.rb b/test/ruby/test_hash.rb index d759c7cd4b..562ac93dfc 100644 --- a/test/ruby/test_hash.rb +++ b/test/ruby/test_hash.rb @@ -7,7 +7,7 @@ class TestHash < Test::Unit::TestCase $x = {1=>2, 2=>4, 3=>6} $y = {1, 2, 2, 4, 3, 6} - assert($x[1] == 2) + assert_equal($x[1], 2) assert(begin for k,v in $y @@ -18,48 +18,48 @@ class TestHash < Test::Unit::TestCase false end) - assert($x.length == 3) + assert_equal($x.length, 3) assert($x.has_key?(1)) assert($x.has_value?(4)) - assert($x.values_at(2,3) == [4,6]) - assert($x == {1=>2, 2=>4, 3=>6}) + assert_equal($x.values_at(2,3), [4,6]) + assert_equal($x, {1=>2, 2=>4, 3=>6}) $z = $y.keys.join(":") - assert($z == "1:2:3") + assert_equal($z, "1:2:3") $z = $y.values.join(":") - assert($z == "2:4:6") - assert($x == $y) + assert_equal($z, "2:4:6") + assert_equal($x, $y) $y.shift - assert($y.length == 2) + assert_equal($y.length, 2) $z = [1,2] $y[$z] = 256 - assert($y[$z] == 256) + assert_equal($y[$z], 256) $x = Hash.new(0) $x[1] = 1 - assert($x[1] == 1) - assert($x[2] == 0) + assert_equal($x[1], 1) + assert_equal($x[2], 0) $x = Hash.new([]) - assert($x[22] == []) + assert_equal($x[22], []) assert($x[22].equal?($x[22])) $x = Hash.new{[]} - assert($x[22] == []) + assert_equal($x[22], []) assert(!$x[22].equal?($x[22])) $x = Hash.new{|h,k| $z = k; h[k] = k*2} $z = 0 - assert($x[22] == 44) - assert($z == 22) + assert_equal($x[22], 44) + assert_equal($z, 22) $z = 0 - assert($x[22] == 44) - assert($z == 0) + assert_equal($x[22], 44) + assert_equal($z, 0) $x.default = 5 - assert($x[23] == 5) + assert_equal($x[23], 5) $x = Hash.new def $x.default(k) @@ -67,10 +67,10 @@ class TestHash < Test::Unit::TestCase self[k] = k*2 end $z = 0 - assert($x[22] == 44) - assert($z == 22) + assert_equal($x[22], 44) + assert_equal($z, 22) $z = 0 - assert($x[22] == 44) - assert($z == 0) + assert_equal($x[22], 44) + assert_equal($z, 0) end end -- cgit v1.2.3