You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
blogs = Blog.order(:name).eager_load(:posts).to_a
blogs.first.posts.to_a.first.author
blogs.flat_map(&:posts).drop(1).each do |blog|
expect(blog.association(:author)).to be_loaded
end
The text was updated successfully, but these errors were encountered:
Here's a test case:
The text was updated successfully, but these errors were encountered: