diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-07-01 22:11:20 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-07-01 22:11:20 +0200 |
commit | 2181832fca6171631f6c7ff700e14676c6d331e8 (patch) | |
tree | 0004df6bffc5c73d64ad89ba6f37b36c1f8d92fe /activerecord/test/cases | |
parent | 259161881fb5becaadfca47bda2dcf36cfb129f2 (diff) | |
download | rails-2181832fca6171631f6c7ff700e14676c6d331e8.tar.gz rails-2181832fca6171631f6c7ff700e14676c6d331e8.tar.bz2 rails-2181832fca6171631f6c7ff700e14676c6d331e8.zip |
Remove deprecated `:distinct` option from `Relation#count`.
Diffstat (limited to 'activerecord/test/cases')
-rw-r--r-- | activerecord/test/cases/calculations_test.rb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/activerecord/test/cases/calculations_test.rb b/activerecord/test/cases/calculations_test.rb index 0f3f9aecfc..73a183f9b4 100644 --- a/activerecord/test/cases/calculations_test.rb +++ b/activerecord/test/cases/calculations_test.rb @@ -351,16 +351,6 @@ class CalculationsTest < ActiveRecord::TestCase assert_equal 5, Account.count(:firm_id) end - def test_count_distinct_option_is_deprecated - assert_deprecated do - assert_equal 4, Account.select(:credit_limit).count(distinct: true) - end - - assert_deprecated do - assert_equal 6, Account.select(:credit_limit).count(distinct: false) - end - end - def test_count_with_distinct assert_equal 4, Account.select(:credit_limit).distinct.count assert_equal 4, Account.select(:credit_limit).uniq.count |