提交 5193fe9d 编写于 作者: L Lawrence Pit 提交者: Eloy Duran

Exclude unchanged records from the collection being considered for autosave. [#2578 state:resolved]

Signed-off-by: NEloy Duran <eloy.de.enige@gmail.com>
上级 10803514
......@@ -224,10 +224,10 @@ def marked_for_destruction?
def associated_records_to_validate_or_save(association, new_record, autosave)
if new_record
association
elsif association.loaded?
autosave ? association : association.find_all { |record| record.new_record? }
elsif autosave
association.target.find_all { |record| record.new_record? || record.changed? || record.marked_for_destruction? }
else
autosave ? association.target : association.target.find_all { |record| record.new_record? }
association.target.find_all { |record| record.new_record? }
end
end
......
......@@ -701,23 +701,18 @@ def save(*args)
define_method("test_should_rollback_destructions_if_an_exception_occurred_while_saving_#{association_name}") do
2.times { |i| @pirate.send(association_name).create!(:name => "#{association_name}_#{i}") }
before = @pirate.send(association_name).map { |c| c }
before = @pirate.send(association_name).map { |c| c.mark_for_destruction ; c }
# Stub the save method of the first child to destroy and the second to raise an exception
class << before.first
def save(*args)
super
destroy
end
end
# Stub the destroy method of the the second child to raise an exception
class << before.last
def save(*args)
def destroy(*args)
super
raise 'Oh noes!'
end
end
assert_raise(RuntimeError) { assert !@pirate.save }
assert before.first.frozen? # the first child was indeed destroyed
assert_equal before, @pirate.reload.send(association_name)
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册