summaryrefslogtreecommitdiff
path: root/test/ruby/test_array.rb
diff options
context:
space:
mode:
authornahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 11:28:27 +0000
committernahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-05 11:28:27 +0000
commit65264eadbd3a8e1a3a96024e559a4a72d97c71e4 (patch)
treef76634ece5171d4b04d427a6a19a1d2d92ef47d8 /test/ruby/test_array.rb
parentd9f38cbee88fdbb06d8577496062918da39fdeab (diff)
* 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
Diffstat (limited to 'test/ruby/test_array.rb')
-rw-r--r--test/ruby/test_array.rb66
1 files changed, 33 insertions, 33 deletions
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index bc2902f6ff..de82032221 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -4,20 +4,20 @@ $KCODE = 'none'
class TestArray < Test::Unit::TestCase
def test_array
- assert([1, 2] + [3, 4] == [1, 2, 3, 4])
- assert([1, 2] * 2 == [1, 2, 1, 2])
- assert([1, 2] * ":" == "1:2")
+ assert_equal([1, 2] + [3, 4], [1, 2, 3, 4])
+ assert_equal([1, 2] * 2, [1, 2, 1, 2])
+ assert_equal([1, 2] * ":", "1:2")
- assert([1, 2].hash == [1, 2].hash)
+ assert_equal([1, 2].hash, [1, 2].hash)
- assert([1,2,3] & [2,3,4] == [2,3])
- assert([1,2,3] | [2,3,4] == [1,2,3,4])
- assert([1,2,3] - [2,3] == [1])
+ assert_equal([1,2,3] & [2,3,4], [2,3])
+ assert_equal([1,2,3] | [2,3,4], [1,2,3,4])
+ assert_equal([1,2,3] - [2,3], [1])
$x = [0, 1, 2, 3, 4, 5]
- assert($x[2] == 2)
- assert($x[1..3] == [1, 2, 3])
- assert($x[1,3] == [1, 2, 3])
+ assert_equal($x[2], 2)
+ assert_equal($x[1..3], [1, 2, 3])
+ assert_equal($x[1,3], [1, 2, 3])
$x[0, 2] = 10
assert($x[0] == 10 && $x[1] == 2)
@@ -30,20 +30,20 @@ class TestArray < Test::Unit::TestCase
end
def test_array_andor
- assert(([1,2,3]&[2,4,6]) == [2])
- assert(([1,2,3]|[2,4,6]) == [1,2,3,4,6])
+ assert_equal(([1,2,3]&[2,4,6]), [2])
+ assert_equal(([1,2,3]|[2,4,6]), [1,2,3,4,6])
end
def test_compact
$x = [nil, 1, nil, nil, 5, nil, nil]
$x.compact!
- assert($x == [1, 5])
+ assert_equal($x, [1, 5])
end
def test_uniq
$x = [1, 1, 4, 2, 5, 4, 5, 1, 2]
$x.uniq!
- assert($x == [1, 4, 2, 5])
+ assert_equal($x, [1, 4, 2, 5])
# empty?
assert(!$x.empty?)
@@ -54,50 +54,50 @@ class TestArray < Test::Unit::TestCase
def test_sort
$x = ["it", "came", "to", "pass", "that", "..."]
$x = $x.sort.join(" ")
- assert($x == "... came it pass that to")
+ assert_equal($x, "... came it pass that to")
$x = [2,5,3,1,7]
$x.sort!{|a,b| a<=>b} # sort with condition
- assert($x == [1,2,3,5,7])
+ assert_equal($x, [1,2,3,5,7])
$x.sort!{|a,b| b-a} # reverse sort
- assert($x == [7,5,3,2,1])
+ assert_equal($x, [7,5,3,2,1])
end
def test_split
$x = "The Boassert of Mormon"
- assert($x.split(//).reverse!.join == $x.reverse)
- assert($x.reverse == $x.reverse!)
- assert("1 byte string".split(//).reverse.join(":") == "g:n:i:r:t:s: :e:t:y:b: :1")
+ assert_equal($x.split(//).reverse!.join, $x.reverse)
+ assert_equal($x.reverse, $x.reverse!)
+ assert_equal("1 byte string".split(//).reverse.join(":"), "g:n:i:r:t:s: :e:t:y:b: :1")
$x = "a b c d"
- assert($x.split == ['a', 'b', 'c', 'd'])
- assert($x.split(' ') == ['a', 'b', 'c', 'd'])
+ assert_equal($x.split, ['a', 'b', 'c', 'd'])
+ assert_equal($x.split(' '), ['a', 'b', 'c', 'd'])
end
def test_misc
assert(defined? "a".chomp)
- assert("abc".scan(/./) == ["a", "b", "c"])
- assert("1a2b3c".scan(/(\d.)/) == [["1a"], ["2b"], ["3c"]])
+ assert_equal("abc".scan(/./), ["a", "b", "c"])
+ assert_equal("1a2b3c".scan(/(\d.)/), [["1a"], ["2b"], ["3c"]])
# non-greedy match
- assert("a=12;b=22".scan(/(.*?)=(\d*);?/) == [["a", "12"], ["b", "22"]])
+ assert_equal("a=12;b=22".scan(/(.*?)=(\d*);?/), [["a", "12"], ["b", "22"]])
$x = [1]
- assert(($x * 5).join(":") == '1:1:1:1:1')
- assert(($x * 1).join(":") == '1')
- assert(($x * 0).join(":") == '')
+ assert_equal(($x * 5).join(":"), '1:1:1:1:1')
+ assert_equal(($x * 1).join(":"), '1')
+ assert_equal(($x * 0).join(":"), '')
*$x = *(1..7).to_a
- assert($x.size == 7)
- assert($x == [1, 2, 3, 4, 5, 6, 7])
+ assert_equal($x.size, 7)
+ assert_equal($x, [1, 2, 3, 4, 5, 6, 7])
$x = [1,2,3]
$x[1,0] = $x
- assert($x == [1,1,2,3,2,3])
+ assert_equal($x, [1,1,2,3,2,3])
$x = [1,2,3]
$x[-1,0] = $x
- assert($x == [1,2,1,2,3,3])
+ assert_equal($x, [1,2,1,2,3,3])
$x = [1,2,3]
$x.concat($x)
- assert($x == [1,2,3,1,2,3])
+ assert_equal($x, [1,2,3,1,2,3])
end
end