aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2010-10-31 11:16:16 +0000
committerAaron Patterson <aaron.patterson@gmail.com>2010-11-17 15:52:18 -0800
commitfe42c00ac38b834ee9ef34f0707558cf02dbe6c0 (patch)
tree295af64934a66a1ed14ac975f0585115f82b75ca /activerecord/test/cases
parent9c1993bf6bdd0a3d2c46310c953631c1d5a7e3d1 (diff)
downloadrails-fe42c00ac38b834ee9ef34f0707558cf02dbe6c0.tar.gz
rails-fe42c00ac38b834ee9ef34f0707558cf02dbe6c0.tar.bz2
rails-fe42c00ac38b834ee9ef34f0707558cf02dbe6c0.zip
Fix bug with 0bb85ed9ffa9808926b46e8f7e59cab5b85ac19f which missed out a fixtures declaration in cascaded_eager_loading_test.rb
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/associations/cascaded_eager_loading_test.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/test/cases/associations/cascaded_eager_loading_test.rb b/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
index 37c6f354a8..0742e311d9 100644
--- a/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
+++ b/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
@@ -10,7 +10,8 @@ require 'models/reply'
require 'models/person'
class CascadedEagerLoadingTest < ActiveRecord::TestCase
- fixtures :authors, :mixins, :companies, :posts, :topics, :accounts, :comments, :categorizations, :people
+ fixtures :authors, :mixins, :companies, :posts, :topics, :accounts, :comments,
+ :categorizations, :people, :categories
def test_eager_association_loading_with_cascaded_two_levels
authors = Author.find(:all, :include=>{:posts=>:comments}, :order=>"authors.id")