diff options
Diffstat (limited to 'activerecord/test')
-rw-r--r-- | activerecord/test/cases/identity_map_test.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/activerecord/test/cases/identity_map_test.rb b/activerecord/test/cases/identity_map_test.rb index 0d031d433c..3efc8bf559 100644 --- a/activerecord/test/cases/identity_map_test.rb +++ b/activerecord/test/cases/identity_map_test.rb @@ -162,14 +162,6 @@ 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 # |