From a3502c419e621c6abac2a9e047e42a582fd80769 Mon Sep 17 00:00:00 2001 From: Rick Olson Date: Thu, 16 Mar 2006 06:17:54 +0000 Subject: 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 --- activerecord/test/fixtures/category.rb | 3 +++ 1 file changed, 3 insertions(+) (limited to 'activerecord/test/fixtures/category.rb') diff --git a/activerecord/test/fixtures/category.rb b/activerecord/test/fixtures/category.rb index 9be459a80f..6917c51d34 100644 --- a/activerecord/test/fixtures/category.rb +++ b/activerecord/test/fixtures/category.rb @@ -1,5 +1,8 @@ class Category < ActiveRecord::Base has_and_belongs_to_many :posts + has_and_belongs_to_many :special_posts, :class_name => "Post" + has_and_belongs_to_many :hello_posts, :class_name => "Post", :conditions => "\#{aliased_table_name}.body = 'hello'" + has_and_belongs_to_many :nonexistent_posts, :class_name => "Post", :conditions=>"\#{aliased_table_name}.body = 'nonexistent'" def self.what_are_you 'a category...' -- cgit v1.2.3