Skip to content

Commit

Permalink
Fix CollectionAssociation#replace to return new target (closes #6231)
Browse files Browse the repository at this point in the history
  • Loading branch information
drogus committed May 17, 2012
1 parent 1f0e2de commit e2a070c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Expand Up @@ -468,6 +468,8 @@ def replace_records(new_target, original_target)
raise RecordNotSaved, "Failed to replace #{reflection.name} because one or more of the " \
"new records could not be saved."
end

new_target
end

def concat_records(records)
Expand Down
12 changes: 12 additions & 0 deletions activerecord/test/cases/associations/has_many_associations_test.rb
Expand Up @@ -1685,6 +1685,18 @@ def test_replace
assert_equal [bulb2], car.reload.bulbs
end

def test_replace_returns_new_target
car = Car.create(:name => 'honda')
bulb1 = car.bulbs.create
bulb2 = car.bulbs.create
bulb3 = Bulb.create

assert_equal [bulb1, bulb2], car.bulbs
result = car.bulbs.replace([bulb1, bulb3])
assert_equal [bulb1, bulb3], car.bulbs
assert_equal [bulb1, bulb3], result
end

def test_building_has_many_association_with_restrict_dependency
option_before = ActiveRecord::Base.dependent_restrict_raises
ActiveRecord::Base.dependent_restrict_raises = true
Expand Down

0 comments on commit e2a070c

Please sign in to comment.