1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_bignum.rb, test/ruby/test_class.rb,

test/ruby/test_defined.rb, test/ruby/test_hash.rb,
  test/ruby/test_primitive.rb, test/ruby/test_variable.rb: add some
  tests (for coverage).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@26370 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2010-01-21 16:08:40 +00:00
parent c758a90693
commit 45c2671e37
7 changed files with 38 additions and 0 deletions

View file

@ -228,6 +228,12 @@ class TestRubyPrimitive < Test::Unit::TestCase
assert_equal 7, a[0]
a[0] ||= 3
assert_equal 7, a[0]
a = [0, 1, nil, 3, 4]
a[*[2]] ||= :foo
assert_equal [0, 1, :foo, 3, 4], a
a[*[1,3]] &&= [:bar]
assert_equal [0, :bar, 4], a
end
def test_opassign_and_or