aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/relations_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/relations_test.rb')
-rw-r--r--activerecord/test/cases/relations_test.rb14
1 files changed, 10 insertions, 4 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb
index 50bd221bb3..d0a28c58e0 100644
--- a/activerecord/test/cases/relations_test.rb
+++ b/activerecord/test/cases/relations_test.rb
@@ -116,22 +116,28 @@ class RelationTest < ActiveRecord::TestCase
def test_find_with_included_associations
assert_queries(2) do
posts = Post.preload(:comments)
- posts.first.comments.first
+ assert posts.first.comments.first
end
assert_queries(2) do
posts = Post.preload(:comments).to_a
- posts.first.comments.first
+ assert posts.first.comments.first
end
assert_queries(2) do
posts = Post.preload(:author)
- posts.first.author
+ assert posts.first.author
end
assert_queries(2) do
posts = Post.preload(:author).to_a
- posts.first.author
+ assert posts.first.author
+ end
+
+ assert_queries(3) do
+ posts = Post.preload(:author, :comments).to_a
+ assert posts.first.author
+ assert posts.first.comments.first
end
end