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

@ -871,4 +871,8 @@ class TestHash < Test::Unit::TestCase
def o.hash; 2<<100; end
assert_equal({x=>1}.hash, {x=>1}.hash)
end
def test_hash_poped
assert_nothing_raised { eval("a = 1; {a => a}; a") }
end
end