aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorDavid Trasbo <me@dtrasbo.com>2010-06-30 21:33:49 +0200
committerJosé Valim <jose.valim@gmail.com>2010-07-08 23:24:20 +0200
commit786342e17f42799ef889cf6127fe97e9598272e0 (patch)
tree0e0d539db6000d2d7510cf9691bbe42681661684 /activerecord/test
parent1e53404fe9c39ad0849894d73e431315be8c0bf0 (diff)
downloadrails-786342e17f42799ef889cf6127fe97e9598272e0.tar.gz
rails-786342e17f42799ef889cf6127fe97e9598272e0.tar.bz2
rails-786342e17f42799ef889cf6127fe97e9598272e0.zip
Return from ActiveRecord::Base#attributes= unless value is a hash [#4070 state:committed]
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/base_test.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/cases/base_test.rb b/activerecord/test/cases/base_test.rb
index 09bdd13cd4..a4cf5120e1 100644
--- a/activerecord/test/cases/base_test.rb
+++ b/activerecord/test/cases/base_test.rb
@@ -61,6 +61,13 @@ class BasicsTest < ActiveRecord::TestCase
assert_equal(topics(:first).author_email_address, Topic.find(1).author_email_address)
end
+ def test_set_attributes_without_hash
+ topic = Topic.new
+ assert_nothing_raised do
+ topic.attributes = ''
+ end
+ end
+
def test_integers_as_nil
test = AutoId.create('value' => '')
assert_nil AutoId.find(test.id).value