aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
diff options
context:
space:
mode:
authorTarmo Tänav <tarmo@itech.ee>2008-07-31 23:59:53 +0300
committerMichael Koziarski <michael@koziarski.com>2008-08-04 11:50:15 +0200
commit82343859d568799a4151facbde1f8c711ecb7a3f (patch)
tree2fe191fe0b9a544ef9b50fe684f1861c8b84fe6f /activerecord/test/cases/associations/cascaded_eager_loading_test.rb
parentcb21db1a334e6ca2695d4e7183b1bdce204b9eb3 (diff)
downloadrails-82343859d568799a4151facbde1f8c711ecb7a3f.tar.gz
rails-82343859d568799a4151facbde1f8c711ecb7a3f.tar.bz2
rails-82343859d568799a4151facbde1f8c711ecb7a3f.zip
Added missing fixtures for tests which fail to run independently if run after schema reset
Signed-off-by: Michael Koziarski <michael@koziarski.com>
Diffstat (limited to 'activerecord/test/cases/associations/cascaded_eager_loading_test.rb')
-rw-r--r--activerecord/test/cases/associations/cascaded_eager_loading_test.rb2
1 files changed, 1 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 3631be76a0..1f8a1090eb 100644
--- a/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
+++ b/activerecord/test/cases/associations/cascaded_eager_loading_test.rb
@@ -9,7 +9,7 @@ require 'models/topic'
require 'models/reply'
class CascadedEagerLoadingTest < ActiveRecord::TestCase
- fixtures :authors, :mixins, :companies, :posts, :topics
+ fixtures :authors, :mixins, :companies, :posts, :topics, :accounts, :comments, :categorizations
def test_eager_association_loading_with_cascaded_two_levels
authors = Author.find(:all, :include=>{:posts=>:comments}, :order=>"authors.id")