aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/base_test.rb
diff options
context:
space:
mode:
authorMichael Koziarski <michael@koziarski.com>2006-01-14 08:26:20 +0000
committerMichael Koziarski <michael@koziarski.com>2006-01-14 08:26:20 +0000
commitf41feb349caed7580ba0493e3bb2e393cdb45ddb (patch)
tree1356efda0eb6b52f378eda96c78e52d3421e09ad /activerecord/test/base_test.rb
parentf9e0ba2913052f34d4873ba804502d91ae2f6ca7 (diff)
downloadrails-f41feb349caed7580ba0493e3bb2e393cdb45ddb.tar.gz
rails-f41feb349caed7580ba0493e3bb2e393cdb45ddb.tar.bz2
rails-f41feb349caed7580ba0493e3bb2e393cdb45ddb.zip
Don't alter the Hash passed to attributes=, closes #3385
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3417 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/base_test.rb')
-rwxr-xr-xactiverecord/test/base_test.rb15
1 files changed, 13 insertions, 2 deletions
diff --git a/activerecord/test/base_test.rb b/activerecord/test/base_test.rb
index 9b5d053a98..4de720a176 100755
--- a/activerecord/test/base_test.rb
+++ b/activerecord/test/base_test.rb
@@ -133,8 +133,19 @@ class BasicsTest < Test::Unit::TestCase
topic = Topic.new
topic.title = "New Topic"
topic.save
- topicReloaded = Topic.find(topic.id)
- assert_equal("New Topic", topicReloaded.title)
+ topic_reloaded = Topic.find(topic.id)
+ assert_equal("New Topic", topic_reloaded.title)
+ end
+
+ def test_hashes_not_mangled
+ new_topic = { :title => "New Topic" }
+ new_topic_values = { :title => "AnotherTopic" }
+
+ topic = Topic.new(new_topic)
+ assert_equal new_topic[:title], topic.title
+
+ topic.attributes= new_topic_values
+ assert_equal new_topic_value[:title], topic.title
end
def test_create_many