aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorChris Geihsler <chris@geihsler.net>2013-01-12 10:22:17 -0500
committerChris Geihsler <chris@geihsler.net>2013-01-19 18:53:25 -0500
commit7f6872e85bdc2364ed0f90fc9795c59c1deef103 (patch)
treebbf1269dbd34189852c2b4a3d81d5cbf0463feab /activerecord/test
parent6581d798e830a7820dd54fe95d40014c0e2057fe (diff)
downloadrails-7f6872e85bdc2364ed0f90fc9795c59c1deef103.tar.gz
rails-7f6872e85bdc2364ed0f90fc9795c59c1deef103.tar.bz2
rails-7f6872e85bdc2364ed0f90fc9795c59c1deef103.zip
Added test case to prevent regression of chained, preloaded scopes. (#7490)
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/relations_test.rb7
-rw-r--r--activerecord/test/models/post.rb3
2 files changed, 10 insertions, 0 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb
index 3a499a2025..64f1c9f6cc 100644
--- a/activerecord/test/cases/relations_test.rb
+++ b/activerecord/test/cases/relations_test.rb
@@ -404,6 +404,13 @@ class RelationTest < ActiveRecord::TestCase
end
end
+ def test_preload_applies_to_all_chained_preloaded_scopes
+ assert_queries(3) do
+ post = Post.with_comments.with_tags.first
+ assert post
+ end
+ end
+
def test_find_with_included_associations
assert_queries(2) do
posts = Post.includes(:comments).order('posts.id')
diff --git a/activerecord/test/models/post.rb b/activerecord/test/models/post.rb
index c995f59a15..11ce345f7c 100644
--- a/activerecord/test/models/post.rb
+++ b/activerecord/test/models/post.rb
@@ -29,6 +29,9 @@ class Post < ActiveRecord::Base
scope :with_very_special_comments, -> { joins(:comments).where(:comments => {:type => 'VerySpecialComment'}) }
scope :with_post, ->(post_id) { joins(:comments).where(:comments => { :post_id => post_id }) }
+ scope :with_comments, -> { preload(:comments) }
+ scope :with_tags, -> { preload(:taggings) }
+
has_many :comments do
def find_most_recent
order("id DESC").first