aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/author.rb
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-03-16 06:17:54 +0000
committerRick Olson <technoweenie@gmail.com>2006-03-16 06:17:54 +0000
commita3502c419e621c6abac2a9e047e42a582fd80769 (patch)
treec9bf8c4843816babe39e4a276f7f6bdb38206687 /activerecord/test/fixtures/author.rb
parentfd87a787101e4b58249bf953ada756b992dff5f5 (diff)
downloadrails-a3502c419e621c6abac2a9e047e42a582fd80769.tar.gz
rails-a3502c419e621c6abac2a9e047e42a582fd80769.tar.bz2
rails-a3502c419e621c6abac2a9e047e42a582fd80769.zip
Use association's :conditions when eager loading. [jeremyevans0@gmail.com] closes #4144
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3897 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/fixtures/author.rb')
-rw-r--r--activerecord/test/fixtures/author.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/author.rb b/activerecord/test/fixtures/author.rb
index 3138dfca57..8c6cee51e4 100644
--- a/activerecord/test/fixtures/author.rb
+++ b/activerecord/test/fixtures/author.rb
@@ -4,6 +4,9 @@ class Author < ActiveRecord::Base
has_many :posts_with_categories, :include => :categories, :class_name => "Post"
has_many :posts_with_comments_and_categories, :include => [ :comments, :categories ], :order => "posts.id", :class_name => "Post"
+ has_many :special_posts, :class_name => "Post"
+ has_many :hello_posts, :class_name => "Post", :conditions=>"\#{aliased_table_name}.body = 'hello'"
+ has_many :nonexistent_posts, :class_name => "Post", :conditions=>"\#{aliased_table_name}.body = 'nonexistent'"
has_many :posts_with_callbacks, :class_name => "Post", :before_add => :log_before_adding,
:after_add => :log_after_adding, :before_remove => :log_before_removing,
:after_remove => :log_after_removing