aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_many_associations_test.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2017-08-02 09:52:14 -0500
committerGitHub <noreply@github.com>2017-08-02 09:52:14 -0500
commitc6974229d018b73f70e38ca8c8862473870d0274 (patch)
tree51a95d540eeece7a77c44166caa1ebf120027eba /activerecord/test/cases/associations/has_many_associations_test.rb
parent4c3c4182a7bde6a736c0b489276da9f77fc430f2 (diff)
parent869cb93de12141425b73f43e93f6e3730147b0ed (diff)
downloadrails-c6974229d018b73f70e38ca8c8862473870d0274.tar.gz
rails-c6974229d018b73f70e38ca8c8862473870d0274.tar.bz2
rails-c6974229d018b73f70e38ca8c8862473870d0274.zip
Merge branch 'master' into active-storage-import
Diffstat (limited to 'activerecord/test/cases/associations/has_many_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_many_associations_test.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/activerecord/test/cases/associations/has_many_associations_test.rb b/activerecord/test/cases/associations/has_many_associations_test.rb
index 2ab8a6bf03..cedb621b4f 100644
--- a/activerecord/test/cases/associations/has_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_many_associations_test.rb
@@ -465,7 +465,10 @@ class HasManyAssociationsTest < ActiveRecord::TestCase
end
def test_create_resets_cached_counters
+ Reader.delete_all
+
person = Person.create!(first_name: "tenderlove")
+
post = Post.first
assert_equal [], person.readers