aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
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/models
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/models')
-rw-r--r--activerecord/test/models/club.rb3
-rw-r--r--activerecord/test/models/member.rb2
2 files changed, 4 insertions, 1 deletions
diff --git a/activerecord/test/models/club.rb b/activerecord/test/models/club.rb
index 6e7cdd643a..83d6b1b15a 100644
--- a/activerecord/test/models/club.rb
+++ b/activerecord/test/models/club.rb
@@ -4,10 +4,11 @@ class Club < ActiveRecord::Base
has_many :current_memberships
has_one :sponsor
has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
+ belongs_to :category
private
def private_method
"I'm sorry sir, this is a *private* club, not a *pirate* club"
end
-end \ No newline at end of file
+end
diff --git a/activerecord/test/models/member.rb b/activerecord/test/models/member.rb
index 44c10cc4a4..bed62f8b7f 100644
--- a/activerecord/test/models/member.rb
+++ b/activerecord/test/models/member.rb
@@ -18,4 +18,6 @@ class Member < ActiveRecord::Base
has_many :organization_member_details, :through => :member_detail
has_many :organization_member_details_2, :through => :organization, :source => :member_details
+
+ has_one :club_category, :through => :club, :source => :category
end