1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add test_has_many_through_has_one_through

This commit is contained in:
Jon Leighton 2010-10-12 16:53:22 +01:00
parent 1777600e6e
commit 6a016a5511
2 changed files with 17 additions and 2 deletions

View file

@ -21,6 +21,8 @@ require 'models/rating'
require 'models/member'
require 'models/member_detail'
require 'models/member_type'
require 'models/sponsor'
require 'models/club'
# NOTE: Some of these tests might not really test "nested" HMT associations, as opposed to ones which
# are just one level deep. But it's all the same thing really, as the "nested" code is being
@ -30,7 +32,7 @@ require 'models/member_type'
class NestedHasManyThroughAssociationsTest < ActiveRecord::TestCase
fixtures :authors, :books, :posts, :subscriptions, :subscribers, :tags, :taggings,
:people, :readers, :references, :jobs, :ratings, :comments, :members, :member_details,
:member_types
:member_types, :sponsors, :clubs
# Through associations can either use the has_many or has_one macros.
#
@ -97,9 +99,19 @@ class NestedHasManyThroughAssociationsTest < ActiveRecord::TestCase
assert_equal [member_types(:founding)], members.first.nested_member_types
end
# TODO: has_many through
# has_many through
# Source: has_one
# Through: has_one through
def test_has_many_through_has_one_through
assert_equal [sponsors(:moustache_club_sponsor_for_groucho)], members(:groucho).nested_sponsors
members = Member.joins(:nested_sponsors).where('sponsors.id' => sponsors(:moustache_club_sponsor_for_groucho).id)
assert_equal [members(:groucho)], members
# TODO: Make this work
# members = Member.includes(:nested_sponsors)
# assert_equal [sponsors(:moustache_club_sponsor_for_groucho)], members.first.nested_sponsors
end
# TODO: has_many through
# Source: has_many through

View file

@ -12,4 +12,7 @@ class Member < ActiveRecord::Base
has_many :nested_member_types, :through => :member_detail, :source => :member_type
has_one :nested_member_type, :through => :member_detail, :source => :member_type
has_many :nested_sponsors, :through => :sponsor_club, :source => :sponsor
has_one :nested_sponsor, :through => :sponsor_club, :source => :sponsor
end