aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-04-05 15:36:02 +0000
committerRick Olson <technoweenie@gmail.com>2006-04-05 15:36:02 +0000
commit4d232025b7260834dc4a4403b2b9effd043215c4 (patch)
tree81d658cc663b852218d1ec2adb7a4b2d49231edb /activerecord/test/fixtures
parent11323ceb2833512e727fba6d7a7f61befeee4bfd (diff)
downloadrails-4d232025b7260834dc4a4403b2b9effd043215c4.tar.gz
rails-4d232025b7260834dc4a4403b2b9effd043215c4.tar.bz2
rails-4d232025b7260834dc4a4403b2b9effd043215c4.zip
Added descriptive error messages for invalid has_many :through associations: going through :has_one or :has_and_belongs_to_many [Rick]
Added support for going through a polymorphic has_many association: (closes #4401) [Rick] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4169 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r--activerecord/test/fixtures/author.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/author.rb b/activerecord/test/fixtures/author.rb
index 1a9b6d788a..99142f6621 100644
--- a/activerecord/test/fixtures/author.rb
+++ b/activerecord/test/fixtures/author.rb
@@ -31,6 +31,11 @@ class Author < ActiveRecord::Base
has_many :author_favorites
has_many :favorite_authors, :through => :author_favorites, :order => 'name'
+ has_many :tagging, :through => :posts # through polymorphic has_one
+ has_many :taggings, :through => :posts, :source => :taggings # through polymorphic has_many
+ has_many :tags, :through => :posts # through has_many :through
+ has_many :post_categories, :through => :posts, :source => :categories
+
belongs_to :author_address
attr_accessor :post_log