aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_one_through_associations_test.rb
diff options
context:
space:
mode:
authorpivotal <pivotal@lexington.flood.pivotallabs.com>2008-08-26 09:20:24 -0700
committerMichael Koziarski <michael@koziarski.com>2008-08-27 11:22:15 +0200
commit9dbde4f5cbd0617ee6cce3e41d41335f9c9ce3fd (patch)
tree4021ec03167071a1c2736b831f9cd9b2b99b288b /activerecord/test/cases/associations/has_one_through_associations_test.rb
parent6ec07e0737c3099056fc11fe43f4f19dde3770a6 (diff)
downloadrails-9dbde4f5cbd0617ee6cce3e41d41335f9c9ce3fd.tar.gz
rails-9dbde4f5cbd0617ee6cce3e41d41335f9c9ce3fd.tar.bz2
rails-9dbde4f5cbd0617ee6cce3e41d41335f9c9ce3fd.zip
Fix two has_one :through errors
* Set the association target on assignment; * Reset target to nil on reset, rather than empty array. Signed-off-by: Michael Koziarski <michael@koziarski.com> [#895 state:committed]
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.rb9
1 files changed, 9 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 b61a3711e3..77e3cb1776 100644
--- a/activerecord/test/cases/associations/has_one_through_associations_test.rb
+++ b/activerecord/test/cases/associations/has_one_through_associations_test.rb
@@ -101,4 +101,13 @@ class HasOneThroughAssociationsTest < ActiveRecord::TestCase
assert_equal clubs(:crazy_club), members[0].sponsor_club
end
+ def test_uninitialized_has_one_through_should_return_nil_for_unsaved_record
+ assert_nil Member.new.club
+ end
+
+ def test_assigning_association_correctly_assigns_target
+ new_member = Member.create(:name => "Chris")
+ new_member.club = new_club = Club.create(:name => "LRUG")
+ assert_equal new_club, new_member.club.target
+ end
end