diff options
author | Jon Leighton <j@jonathanleighton.com> | 2010-12-12 17:03:41 +0000 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-15 11:03:58 -0800 |
commit | a04e1036691ca98579dd8b8b6cb19ffb23f85c72 (patch) | |
tree | 31939cee462d979cdddc31c99bc58238e261367d /activerecord/test/models/author.rb | |
parent | 16e93f2c3c3ca37d2bae9801b680b05f75c48c18 (diff) | |
download | rails-a04e1036691ca98579dd8b8b6cb19ffb23f85c72.tar.gz rails-a04e1036691ca98579dd8b8b6cb19ffb23f85c72.tar.bz2 rails-a04e1036691ca98579dd8b8b6cb19ffb23f85c72.zip |
Verify that creating a has_many through record where there is a default_scope on the join model works correctly (creates the join record with the default scope applied)
Diffstat (limited to 'activerecord/test/models/author.rb')
-rw-r--r-- | activerecord/test/models/author.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/models/author.rb b/activerecord/test/models/author.rb index 29ee50e801..fd6d2b384a 100644 --- a/activerecord/test/models/author.rb +++ b/activerecord/test/models/author.rb @@ -77,6 +77,10 @@ class Author < ActiveRecord::Base has_many :categorizations has_many :categories, :through => :categorizations + has_many :special_categorizations + has_many :special_categories, :through => :special_categorizations, :source => :category + has_one :special_category, :through => :special_categorizations, :source => :category + has_many :categories_like_general, :through => :categorizations, :source => :category, :class_name => 'Category', :conditions => { :name => 'General' } has_many :categorized_posts, :through => :categorizations, :source => :post |