aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_one_through_associations_test.rb
diff options
context:
space:
mode:
authorWill Bryant <will.bryant@gmail.com>2009-03-12 02:13:26 +1300
committerPratik Naik <pratiknaik@gmail.com>2009-03-12 13:26:21 +0000
commit92dadf6d7927fde1482ba1d96d0916093bfb83ca (patch)
tree172216767adf80f62aea3a358cab1bc9ce675937 /activerecord/test/cases/associations/has_one_through_associations_test.rb
parentbe7b64b35aac1c9e9063d1d8317f8b1be2a3411c (diff)
downloadrails-92dadf6d7927fde1482ba1d96d0916093bfb83ca.tar.gz
rails-92dadf6d7927fde1482ba1d96d0916093bfb83ca.tar.bz2
rails-92dadf6d7927fde1482ba1d96d0916093bfb83ca.zip
Fixed autosave checks on objects with hm:t in :include [#2213 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'activerecord/test/cases/associations/has_one_through_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_one_through_associations_test.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_one_through_associations_test.rb b/activerecord/test/cases/associations/has_one_through_associations_test.rb
index f96b55513e..12c598751b 100644
--- a/activerecord/test/cases/associations/has_one_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_one_through_associations_test.rb
@@ -173,4 +173,20 @@ class HasOneThroughAssociationsTest < ActiveRecord::TestCase
assert_not_nil assert_no_queries { @new_detail.member_type }
end
+ def test_save_of_record_with_loaded_has_one_through
+ @club = @member.club
+ assert_not_nil @club.sponsored_member
+
+ assert_nothing_raised do
+ Club.find(@club.id).save!
+ Club.find(@club.id, :include => :sponsored_member).save!
+ end
+
+ @club.sponsor.destroy
+
+ assert_nothing_raised do
+ Club.find(@club.id).save!
+ Club.find(@club.id, :include => :sponsored_member).save!
+ end
+ end
end