aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/associations/belongs_to_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/belongs_to_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/belongs_to_associations_test.rb')
-rw-r--r--activerecord/test/cases/associations/belongs_to_associations_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/cases/associations/belongs_to_associations_test.rb b/activerecord/test/cases/associations/belongs_to_associations_test.rb
index b75e2a47a6..5875a1871f 100644
--- a/activerecord/test/cases/associations/belongs_to_associations_test.rb
+++ b/activerecord/test/cases/associations/belongs_to_associations_test.rb
@@ -1131,12 +1131,6 @@ class BelongsToAssociationsTest < ActiveRecord::TestCase
Column.create! record: record
assert_equal 1, Column.count
end
-
- def test_association_force_reload_with_only_true_is_deprecated
- client = Client.find(3)
-
- assert_deprecated { client.firm(true) }
- end
end
class BelongsToWithForeignKeyTest < ActiveRecord::TestCase