aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/eager_test.rb
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2012-03-30 16:18:39 +0100
committerJon Leighton <j@jonathanleighton.com>2012-03-30 16:19:32 +0100
commit86aefdb4f2b957acc6d6c7eef557dff6a3888803 (patch)
treee0dfe5c38ccd91df9e81b5b75bd1888016c0727f /activerecord/test/cases/associations/eager_test.rb
parent1141f71601ff61fb299c86d814c07209f1430024 (diff)
downloadrails-86aefdb4f2b957acc6d6c7eef557dff6a3888803.tar.gz
rails-86aefdb4f2b957acc6d6c7eef557dff6a3888803.tar.bz2
rails-86aefdb4f2b957acc6d6c7eef557dff6a3888803.zip
Fix #5667. Preloading should ignore scoping.
Diffstat (limited to 'activerecord/test/cases/associations/eager_test.rb')
-rw-r--r--activerecord/test/cases/associations/eager_test.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/eager_test.rb b/activerecord/test/cases/associations/eager_test.rb
index b27a93f857..efdb7cbb36 100644
--- a/activerecord/test/cases/associations/eager_test.rb
+++ b/activerecord/test/cases/associations/eager_test.rb
@@ -1169,4 +1169,15 @@ class EagerAssociationTest < ActiveRecord::TestCase
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
+
+ test "scoping with a circular preload" do
+ assert_equal Comment.find(1), Comment.preload(:post => :comments).scoping { Comment.find(1) }
+ end
+
+ test "preload ignores the scoping" do
+ assert_equal(
+ Comment.find(1).post,
+ Post.where('1 = 0').scoping { Comment.preload(:post).find(1).post }
+ )
+ end
end