summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-08 16:45:33 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-07-08 16:47:30 +0900
commit7a2383b5c16208dde00de9414001d03422770280 (patch)
tree1ce54b8ce8241bc5f613f6828a2aff3aa5dd5a9b
parent771f6dd75dd38e378e2e0f6de09398b6660b09f2 (diff)
Split test of Hash.[] and add assertion for default value/proc
For a73f13c9070a5189947641638398cbffb8d012d8.
-rw-r--r--test/ruby/test_hash.rb12
1 files changed, 11 insertions, 1 deletions
diff --git a/test/ruby/test_hash.rb b/test/ruby/test_hash.rb
index 23df2410d7..7c83d03b6e 100644
--- a/test/ruby/test_hash.rb
+++ b/test/ruby/test_hash.rb
@@ -142,7 +142,7 @@ class TestHash < Test::Unit::TestCase
end
end
- def test_s_AREF
+ def test_s_AREF_from_hash
h = @cls["a" => 100, "b" => 200]
assert_equal(100, h['a'])
assert_equal(200, h['b'])
@@ -153,11 +153,21 @@ class TestHash < Test::Unit::TestCase
assert_equal(200, h['b'])
assert_nil(h['c'])
+ h = @cls[Hash.new(42)]
+ assert_nil(h['a'])
+
+ h = @cls[Hash.new {42}]
+ assert_nil(h['a'])
+ end
+
+ def test_s_AREF_from_list
h = @cls["a", 100, "b", 200]
assert_equal(100, h['a'])
assert_equal(200, h['b'])
assert_nil(h['c'])
+ end
+ def test_s_AREF_from_pairs
h = @cls[[["a", 100], ["b", 200]]]
assert_equal(100, h['a'])
assert_equal(200, h['b'])