aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/associations/inverse_associations_test.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/activerecord/test/cases/associations/inverse_associations_test.rb b/activerecord/test/cases/associations/inverse_associations_test.rb
index 993e7294cf..b1f0be3204 100644
--- a/activerecord/test/cases/associations/inverse_associations_test.rb
+++ b/activerecord/test/cases/associations/inverse_associations_test.rb
@@ -401,14 +401,6 @@ class InverseHasManyTests < ActiveRecord::TestCase
assert_equal man.name, man.interests.find(interest.id).man.name, "The name of the man should match after the child name is changed"
end
- def test_find_on_child_instance_with_id_should_not_load_all_child_records
- man = Man.create!
- interest = Interest.create!(man: man)
-
- man.interests.find(interest.id)
- refute man.interests.loaded?
- end
-
def test_raise_record_not_found_error_when_invalid_ids_are_passed
man = Man.create!