diff options
author | Aaron Patterson <aaron.patterson@gmail.com> | 2012-01-31 10:53:16 -0800 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2012-01-31 10:53:16 -0800 |
commit | 5cad7a0dba652f3e942e58087bc88ba5c5390edc (patch) | |
tree | 6768d8695fcb075187fcf1364b164aec6d90ecc1 /activerecord/test | |
parent | bb842e8d2111e50b21a14b8bd6d89371a4b9cd68 (diff) | |
parent | e2cea6cc5d912fffd1654209c168bf79705fa5bb (diff) | |
download | rails-5cad7a0dba652f3e942e58087bc88ba5c5390edc.tar.gz rails-5cad7a0dba652f3e942e58087bc88ba5c5390edc.tar.bz2 rails-5cad7a0dba652f3e942e58087bc88ba5c5390edc.zip |
Merge pull request #4746 from jenslukowski/issue4718
Test and fix for issue 4718
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/identity_map_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/activerecord/test/cases/identity_map_test.rb b/activerecord/test/cases/identity_map_test.rb index 3efc8bf559..0d031d433c 100644 --- a/activerecord/test/cases/identity_map_test.rb +++ b/activerecord/test/cases/identity_map_test.rb @@ -162,6 +162,14 @@ class IdentityMapTest < ActiveRecord::TestCase c2 = Comment.find(c.id) assert_same(c1, c2) end + + def test_queries_are_not_executed_when_finding_inherited_class_by_id + c = comments(:sub_special_comment) + SubSpecialComment.find(c.id) + assert_no_queries do + SubSpecialComment.find(c.id) + end + end ############################################################################## # Tests checking dirty attribute behavior with IM # |