aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/eager_test.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-03-28 11:55:01 +0000
committerPratik Naik <pratiknaik@gmail.com>2008-03-28 11:55:01 +0000
commit533da24bbce5c6eeb23ff372fa0b65911fc138d0 (patch)
tree857e04c8ef0f0969753d3724fba938d2579c1034 /activerecord/test/cases/associations/eager_test.rb
parentc62db052a0c188c405ad97abec9dd2cec2b9b1d8 (diff)
downloadrails-533da24bbce5c6eeb23ff372fa0b65911fc138d0.tar.gz
rails-533da24bbce5c6eeb23ff372fa0b65911fc138d0.tar.bz2
rails-533da24bbce5c6eeb23ff372fa0b65911fc138d0.zip
Make sure ActiveRecord tests can run individually. Closes #11425 [thechrisoshow, h-lame]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9109 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/test/cases/associations/eager_test.rb')
-rw-r--r--activerecord/test/cases/associations/eager_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb
index 1bbc68522f..0bc345428f 100644
--- a/activerecord/test/cases/associations/eager_test.rb
+++ b/activerecord/test/cases/associations/eager_test.rb
@@ -13,7 +13,7 @@ require 'models/pet'
class EagerAssociationTest < ActiveRecord::TestCase
fixtures :posts, :comments, :authors, :categories, :categories_posts,
:companies, :accounts, :tags, :taggings, :people, :readers,
- :owners, :pets
+ :owners, :pets, :author_favorites
def test_loading_with_one_association
posts = Post.find(:all, :include => :comments)