aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-12-08 19:58:59 +0000
committerJon Leighton <j@jonathanleighton.com>2011-12-08 20:10:04 +0000
commit5da90b34831a0f941b36edbede9089c54432ad6b (patch)
tree6296bb6f42860b55bc229d88e760de8c7655d9d6 /activerecord/test/cases
parentebd71fd0e39abf495bdf64e3e6d278340c17e5ea (diff)
downloadrails-5da90b34831a0f941b36edbede9089c54432ad6b.tar.gz
rails-5da90b34831a0f941b36edbede9089c54432ad6b.tar.bz2
rails-5da90b34831a0f941b36edbede9089c54432ad6b.zip
Fix #3890. (Calling proxy_association in scope chain.)
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r--activerecord/test/cases/associations/extension_test.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/extension_test.rb b/activerecord/test/cases/associations/extension_test.rb
index 8dc1423375..395b59258d 100644
--- a/activerecord/test/cases/associations/extension_test.rb
+++ b/activerecord/test/cases/associations/extension_test.rb
@@ -71,6 +71,12 @@ class AssociationsExtensionsTest < ActiveRecord::TestCase
assert_equal 'MyApplication::Business::DeveloperAssociationNameAssociationExtension', extension_name(MyApplication::Business::Developer)
end
+ def test_proxy_association_after_scoped
+ post = posts(:welcome)
+ assert_equal post.association(:comments), post.comments.the_association
+ assert_equal post.association(:comments), post.comments.scoped.the_association
+ end
+
private
def extension_name(model)