Skip to content

Commit

Permalink
Fix bug with 0bb85ed which missed out a fixtures declaration in casca…
Browse files Browse the repository at this point in the history
…ded_eager_loading_test.rb
  • Loading branch information
jonleighton authored and tenderlove committed Nov 17, 2010
1 parent 9c1993b commit fe42c00
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
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")
Expand Down

0 comments on commit fe42c00

Please sign in to comment.