diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2010-04-22 09:47:40 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2010-04-22 10:00:23 -0700 |
commit | d692e6be3091dd114afa0cce2778787d3af93e83 (patch) | |
tree | 329c241653fdfd2e80ffc700c6da0247be1ae5e7 /activesupport/test | |
parent | ebf9820f7eb83476d200c71915dd0e8a056bcbab (diff) | |
download | rails-d692e6be3091dd114afa0cce2778787d3af93e83.tar.gz rails-d692e6be3091dd114afa0cce2778787d3af93e83.tar.bz2 rails-d692e6be3091dd114afa0cce2778787d3af93e83.zip |
Restore HWIA#stringify_keys! and update changelog
Diffstat (limited to 'activesupport/test')
-rw-r--r-- | activesupport/test/core_ext/hash_ext_test.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb index bac6d16ac5..1dcde4b665 100644 --- a/activesupport/test/core_ext/hash_ext_test.rb +++ b/activesupport/test/core_ext/hash_ext_test.rb @@ -89,9 +89,9 @@ class HashExtTest < Test::Unit::TestCase end def test_stringify_keys_bang_for_hash_with_indifferent_access - assert_raise(NoMethodError) { @symbols.with_indifferent_access.dup.stringify_keys! } - assert_raise(NoMethodError) { @strings.with_indifferent_access.dup.stringify_keys! } - assert_raise(NoMethodError) { @mixed.with_indifferent_access.dup.stringify_keys! } + assert_equal @strings, @symbols.with_indifferent_access.dup.stringify_keys! + assert_equal @strings, @strings.with_indifferent_access.dup.stringify_keys! + assert_equal @strings, @mixed.with_indifferent_access.dup.stringify_keys! end def test_indifferent_assorted |