aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-07-02 11:57:10 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-07-02 11:57:10 -0500
commitb1e509ad7a8c8264544f10f4666705cd806b5408 (patch)
tree1e33f3c99457e3395218211414917b2fae48a6b5 /activerecord/test/cases
parent9e0b3fc7cfba43af55377488f991348e2de24515 (diff)
downloadrails-b1e509ad7a8c8264544f10f4666705cd806b5408.tar.gz
rails-b1e509ad7a8c8264544f10f4666705cd806b5408.tar.bz2
rails-b1e509ad7a8c8264544f10f4666705cd806b5408.zip
Backport #3329 to 3-2-stable
Fix bug with autosave collection association on new record with a marked for destroy record in autosave collection. Fixes #6918.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/autosave_association_test.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/test/cases/autosave_association_test.rb b/activerecord/test/cases/autosave_association_test.rb
index 315a9b001b..e6b881389b 100644
--- a/activerecord/test/cases/autosave_association_test.rb
+++ b/activerecord/test/cases/autosave_association_test.rb
@@ -770,6 +770,16 @@ class TestDestroyAsPartOfAutosaveAssociation < ActiveRecord::TestCase
assert_equal before, @pirate.reload.birds
end
+ def test_when_new_record_a_child_marked_for_destruction_should_not_affect_other_records_from_saving
+ @pirate = @ship.build_pirate(:catchphrase => "Arr' now I shall keep me eye on you matey!") # new record
+
+ 3.times { |i| @pirate.birds.build(:name => "birds_#{i}") }
+ @pirate.birds[1].mark_for_destruction
+ @pirate.save!
+
+ assert_equal 2, @pirate.birds.reload.length
+ end
+
# Add and remove callbacks tests for association collections.
%w{ method proc }.each do |callback_type|
define_method("test_should_run_add_callback_#{callback_type}s_for_has_many") do