aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorAditya Kapoor <aditya.kapoor@vinsol.com>2015-01-17 00:53:17 +0530
committerAditya Kapoor <aditya.kapoor@vinsol.com>2015-01-17 00:53:17 +0530
commit584931d749bfdd8553740bdcc6e4fef2c18ec523 (patch)
tree912f40d734760a713757747fbd76351e72269314 /activesupport/test
parent090c5211ced7b728df6176d5c9fc7437c107beaf (diff)
downloadrails-584931d749bfdd8553740bdcc6e4fef2c18ec523.tar.gz
rails-584931d749bfdd8553740bdcc6e4fef2c18ec523.tar.bz2
rails-584931d749bfdd8553740bdcc6e4fef2c18ec523.zip
Fix assignment for frozen value in HWIA
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/hash_with_indifferent_access_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activesupport/test/hash_with_indifferent_access_test.rb b/activesupport/test/hash_with_indifferent_access_test.rb
index 843994147b..880457386e 100644
--- a/activesupport/test/hash_with_indifferent_access_test.rb
+++ b/activesupport/test/hash_with_indifferent_access_test.rb
@@ -7,4 +7,11 @@ class HashWithIndifferentAccessTest < ActiveSupport::TestCase
hash.reverse_merge! key: :new_value
assert_equal :old_value, hash[:key]
end
+
+ def test_frozen_value
+ value = [1, 2, 3].freeze
+ hash = {}.with_indifferent_access
+ hash[:key] = value
+ assert_equal hash[:key], value
+ end
end \ No newline at end of file