mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
d9f38cbee8
commit
65264eadbd
25 changed files with 545 additions and 539 deletions
|
@ -20,16 +20,16 @@ class TestConst < Test::Unit::TestCase
|
|||
self.class.class_eval {
|
||||
include Const
|
||||
}
|
||||
assert([TEST1,TEST2,TEST3,TEST4] == [1,2,3,4])
|
||||
assert_equal([TEST1,TEST2,TEST3,TEST4], [1,2,3,4])
|
||||
|
||||
self.class.class_eval {
|
||||
include Const2
|
||||
}
|
||||
STDERR.print "intentionally redefines TEST3, TEST4\n" if $VERBOSE
|
||||
assert([TEST1,TEST2,TEST3,TEST4] == [1,2,6,8])
|
||||
assert_equal([TEST1,TEST2,TEST3,TEST4], [1,2,6,8])
|
||||
|
||||
assert((String <=> Object) == -1)
|
||||
assert((Object <=> String) == 1)
|
||||
assert((Array <=> String) == nil)
|
||||
assert_equal((String <=> Object), -1)
|
||||
assert_equal((Object <=> String), 1)
|
||||
assert_equal((Array <=> String), nil)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue