diff options
author | Arun Agrawal <arunagw@gmail.com> | 2011-12-21 16:16:55 +0530 |
---|---|---|
committer | Arun Agrawal <arunagw@gmail.com> | 2011-12-21 16:16:55 +0530 |
commit | e3c383cd82842df186924ecdf6a7c68d69c79758 (patch) | |
tree | d7b647abdde8b6430c0ee24284dc2e8dfae9516b /activerecord/test/cases/associations | |
parent | 28e869d77ee8515c2fe21c6052d33ab41479a47e (diff) | |
download | rails-e3c383cd82842df186924ecdf6a7c68d69c79758.tar.gz rails-e3c383cd82842df186924ecdf6a7c68d69c79758.tar.bz2 rails-e3c383cd82842df186924ecdf6a7c68d69c79758.zip |
More tests deep including through habtm
fixes #3183
Diffstat (limited to 'activerecord/test/cases/associations')
-rw-r--r-- | activerecord/test/cases/associations/eager_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb index 1dc71ac4cc..3d759e64f8 100644 --- a/activerecord/test/cases/associations/eager_test.rb +++ b/activerecord/test/cases/associations/eager_test.rb @@ -1095,4 +1095,11 @@ class EagerAssociationTest < ActiveRecord::TestCase Post.includes(:comments).order(nil).where(:comments => {:body => "Thank you for the welcome"}).first end end + + def test_deep_including_through_habtm + posts = Post.find(:all, :include => {:categories => :categorizations}, :order => "posts.id") + assert_no_queries { assert_equal 2, posts[0].categories[0].categorizations.length } + assert_no_queries { assert_equal 1, posts[0].categories[1].categorizations.length } + assert_no_queries { assert_equal 2, posts[1].categories[0].categorizations.length } + end end |