aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-05-19 19:13:30 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-05-19 19:13:30 +0000
commit6375569484ce08f53dec8064146c2ca0c74affcd (patch)
tree9f39f76190102d65cba8e1efd386d53276256a52 /activesupport/test/core_ext
parent7160ab1c18738ad357b68922b23ef47b204eef98 (diff)
downloadrails-6375569484ce08f53dec8064146c2ca0c74affcd.tar.gz
rails-6375569484ce08f53dec8064146c2ca0c74affcd.tar.bz2
rails-6375569484ce08f53dec8064146c2ca0c74affcd.zip
Fixed that HashWithIndifferentAccess stringified all keys including symbols, ints, objects, and arrays #1162 [Nicholas Seckar]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1329 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/test/core_ext')
-rw-r--r--activesupport/test/core_ext/hash_ext_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/test/core_ext/hash_ext_test.rb b/activesupport/test/core_ext/hash_ext_test.rb
index 152ce83555..8addd895cc 100644
--- a/activesupport/test/core_ext/hash_ext_test.rb
+++ b/activesupport/test/core_ext/hash_ext_test.rb
@@ -110,4 +110,10 @@ class HashExtTest < Test::Unit::TestCase
h = {:user => {:id => 5}}.with_indifferent_access
['user', :user].each {|user| [:id, 'id'].each {|id| assert_equal 5, h[user][id], "h[#{user.inspect}][#{id.inspect}] should be 5"}}
end
+
+ def test_assorted_keys_not_stringified
+ original = {Object.new => 2, 1 => 2, [] => true}
+ indiff = original.with_indifferent_access
+ assert(!indiff.keys.any? {|k| k.kind_of? String}, "A key was converted to a string!")
+ end
end