aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2016-12-28 23:18:42 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2016-12-29 17:53:03 -0500
commit09cac8c67afdc4b2a1c6ae07931ddc082629b277 (patch)
tree1ed626b7c7a16a3ca9e3e7cecc217360f2336366 /activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb
parent00e3973a31181decc1b1574bf78bfa0226f0f04b (diff)
downloadrails-09cac8c67afdc4b2a1c6ae07931ddc082629b277.tar.gz
rails-09cac8c67afdc4b2a1c6ae07931ddc082629b277.tar.bz2
rails-09cac8c67afdc4b2a1c6ae07931ddc082629b277.zip
Remove deprecated force reload argument in association readers
Diffstat (limited to 'activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb b/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb
index 4b7ac594cf..54fb61d6a5 100644
--- a/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb
+++ b/activerecord/test/cases/associations/has_and_belongs_to_many_associations_test.rb
@@ -955,12 +955,6 @@ class HasAndBelongsToManyAssociationsTest < ActiveRecord::TestCase
end
end
- def test_association_force_reload_with_only_true_is_deprecated
- developer = Developer.find(1)
-
- assert_deprecated { developer.projects(true) }
- end
-
def test_alternate_database
professor = Professor.create(name: "Plum")
course = Course.create(name: "Forensics")