aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2010-10-14 13:44:32 +0100
committerJon Leighton <j@jonathanleighton.com>2010-10-14 13:44:32 +0100
commit002985fb66ae63f157db84f83520c3c256c04f77 (patch)
treebbcb831a16fabb527746afe7aa6358e61cff521e /activerecord/test/cases/associations/nested_has_many_through_associations_test.rb
parent25acd19da5f75a425218740fbb187b18bbb060ce (diff)
downloadrails-002985fb66ae63f157db84f83520c3c256c04f77.tar.gz
rails-002985fb66ae63f157db84f83520c3c256c04f77.tar.bz2
rails-002985fb66ae63f157db84f83520c3c256c04f77.zip
Add test_has_one_through_has_one_through_with_belongs_to_source_reflection
Diffstat (limited to 'activerecord/test/cases/associations/nested_has_many_through_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/nested_has_many_through_associations_test.rb15
1 files changed, 13 insertions, 2 deletions
diff --git a/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb b/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb
index 6212eed0eb..0bd19c10e0 100644
--- a/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb
+++ b/activerecord/test/cases/associations/nested_has_many_through_associations_test.rb
@@ -26,6 +26,7 @@ require 'models/club'
require 'models/organization'
require 'models/category'
require 'models/categorization'
+require 'models/membership'
# 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
@@ -36,7 +37,7 @@ class NestedHasManyThroughAssociationsTest < ActiveRecord::TestCase
fixtures :authors, :books, :posts, :subscriptions, :subscribers, :tags, :taggings,
:people, :readers, :references, :jobs, :ratings, :comments, :members, :member_details,
:member_types, :sponsors, :clubs, :organizations, :categories, :categories_posts,
- :categorizations
+ :categorizations, :memberships
# Through associations can either use the has_many or has_one macros.
#
@@ -241,9 +242,19 @@ class NestedHasManyThroughAssociationsTest < ActiveRecord::TestCase
assert_equal member_types(:founding), members.first.nested_member_type
end
- # TODO: has_one through
+ # has_one through
# Source: belongs_to
# Through: has_one through
+ def test_has_one_through_has_one_through_with_belongs_to_source_reflection
+ assert_equal categories(:general), members(:groucho).club_category
+
+ members = Member.joins(:club_category).where('categories.id' => categories(:technology).id)
+ assert_equal [members(:blarpy_winkup)], members
+
+ # TODO: Make this work
+ # members = Member.includes(:club_category)
+ # assert_equal categories(:general), members.first.club_category
+ end
def test_distinct_has_many_through_a_has_many_through_association_on_source_reflection
author = authors(:david)