From 9a7dbe2c0570e11b9033df735c937d5f5416e0ca Mon Sep 17 00:00:00 2001 From: Jon Leighton Date: Tue, 10 May 2011 22:47:54 +0100 Subject: Don't use mass-assignment protection when applying the scoped.scope_for_create. Fixes #481. --- .../test/cases/associations/has_many_associations_test.rb | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'activerecord/test/cases/associations/has_many_associations_test.rb') diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb index dc2481456b..5a414c49f1 100644 --- a/activerecord/test/cases/associations/has_many_associations_test.rb +++ b/activerecord/test/cases/associations/has_many_associations_test.rb @@ -86,11 +86,20 @@ class HasManyAssociationsTest < ActiveRecord::TestCase bulb = car.bulbs.new assert_equal car.id, bulb.car_id + bulb = car.bulbs.new :car_id => car.id + 1 + assert_equal car.id, bulb.car_id + bulb = car.bulbs.build assert_equal car.id, bulb.car_id + bulb = car.bulbs.build :car_id => car.id + 1 + assert_equal car.id, bulb.car_id + bulb = car.bulbs.create assert_equal car.id, bulb.car_id + + bulb = car.bulbs.create :car_id => car.id + 1 + assert_equal car.id, bulb.car_id ensure Bulb.attr_protected :id end -- cgit v1.2.3