diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2018-09-28 12:00:21 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 12:00:21 -0400 |
commit | 7d3f1c414f5dd4b8f9200676b4c370a29cfd7960 (patch) | |
tree | 1ad61f472a9fe11087f86f3da7b66878c4f7bdb3 /activesupport/test | |
parent | 6ff4faffb1e752c9713b4276c90bfb45feade498 (diff) | |
parent | b2ea8310734b734c29b806f272c866045fc9bca7 (diff) | |
download | rails-7d3f1c414f5dd4b8f9200676b4c370a29cfd7960.tar.gz rails-7d3f1c414f5dd4b8f9200676b4c370a29cfd7960.tar.bz2 rails-7d3f1c414f5dd4b8f9200676b4c370a29cfd7960.zip |
Merge pull request #34012 from abraham-chan/indifferent-access-without
Fix HashWithIndifferentAccess#without bug
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/hash_with_indifferent_access_test.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/activesupport/test/hash_with_indifferent_access_test.rb b/activesupport/test/hash_with_indifferent_access_test.rb index eebff18ef1..af67ed21c8 100644 --- a/activesupport/test/hash_with_indifferent_access_test.rb +++ b/activesupport/test/hash_with_indifferent_access_test.rb @@ -672,6 +672,17 @@ class HashWithIndifferentAccessTest < ActiveSupport::TestCase assert_equal "bender", slice["login"] end + def test_indifferent_without + original = { a: "x", b: "y", c: 10 }.with_indifferent_access + expected = { c: 10 }.with_indifferent_access + + [["a", "b"], [:a, :b]].each do |keys| + # Should return a new hash without the given keys. + assert_equal expected, original.without(*keys), keys.inspect + assert_not_equal expected, original + end + end + def test_indifferent_extract original = { :a => 1, "b" => 2, :c => 3, "d" => 4 }.with_indifferent_access expected = { a: 1, b: 2 }.with_indifferent_access |