aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2019-01-14 15:44:12 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2019-01-17 16:08:32 -0500
commit27b252d6a85e300c7236d034d55ec8e44f57a83e (patch)
treea6f994f483c8b61dd94be4c0f372ceb1f1bdc9f2 /activerecord/test
parent60c8a03c8d1e45e48fcb1055ba4c49ed3d5ff78f (diff)
downloadrails-27b252d6a85e300c7236d034d55ec8e44f57a83e.tar.gz
rails-27b252d6a85e300c7236d034d55ec8e44f57a83e.tar.bz2
rails-27b252d6a85e300c7236d034d55ec8e44f57a83e.zip
Remove deprecated `expand_hash_conditions_for_aggregates`
Diffstat (limited to 'activerecord/test')
-rw-r--r--activerecord/test/cases/sanitize_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activerecord/test/cases/sanitize_test.rb b/activerecord/test/cases/sanitize_test.rb
index 778cf86ac3..18b27bd6d1 100644
--- a/activerecord/test/cases/sanitize_test.rb
+++ b/activerecord/test/cases/sanitize_test.rb
@@ -168,12 +168,6 @@ class SanitizeTest < ActiveRecord::TestCase
assert_equal "#{ActiveRecord::Base.connection.quote('10')}::integer '2009-01-01'::date", l.call
end
- def test_deprecated_expand_hash_conditions_for_aggregates
- assert_deprecated do
- assert_equal({ "balance" => 50 }, Customer.send(:expand_hash_conditions_for_aggregates, balance: Money.new(50)))
- end
- end
-
private
def bind(statement, *vars)
if vars.first.is_a?(Hash)