aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/post.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-03-05 20:10:24 +0000
committerJon Leighton <j@jonathanleighton.com>2011-03-05 20:10:24 +0000
commitddf83d14f1c7ddae07a285a8ad7c45f652edc843 (patch)
treef46cb89576a6267e6a501acec783ee12c1805a89 /activerecord/test/models/post.rb
parent4206eff1895dccadcbec471798bfbd129404cc94 (diff)
downloadrails-ddf83d14f1c7ddae07a285a8ad7c45f652edc843.tar.gz
rails-ddf83d14f1c7ddae07a285a8ad7c45f652edc843.tar.bz2
rails-ddf83d14f1c7ddae07a285a8ad7c45f652edc843.zip
Add a test for STI on the through where the through is nested, and change the code which support this
Diffstat (limited to 'activerecord/test/models/post.rb')
-rw-r--r--activerecord/test/models/post.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/models/post.rb b/activerecord/test/models/post.rb
index b39325f949..c3843fd264 100644
--- a/activerecord/test/models/post.rb
+++ b/activerecord/test/models/post.rb
@@ -50,6 +50,7 @@ class Post < ActiveRecord::Base
has_many :nonexistant_comments, :class_name => 'Comment', :conditions => 'comments.id < 0'
has_many :special_comments_ratings, :through => :special_comments, :source => :ratings
+ has_many :special_comments_ratings_taggings, :through => :special_comments_ratings, :source => :taggings
has_and_belongs_to_many :categories
has_and_belongs_to_many :special_categories, :join_table => "categories_posts", :association_foreign_key => 'category_id'