aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/core_ext/numeric_ext_test.rb
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2016-11-14 12:03:48 +0000
committerAndrew White <andrew.white@unboxed.co>2016-11-14 12:03:48 +0000
commit90520d2eee9093f46757a5e2e589d2237cc960f1 (patch)
tree48f0955739cdef97a0ff8b078e91fa6a20bd4ef0 /activesupport/test/core_ext/numeric_ext_test.rb
parent7c848e6dd493ff236d33a0410a92f4c3e5cc3c7f (diff)
downloadrails-90520d2eee9093f46757a5e2e589d2237cc960f1.tar.gz
rails-90520d2eee9093f46757a5e2e589d2237cc960f1.tar.bz2
rails-90520d2eee9093f46757a5e2e589d2237cc960f1.zip
Remove deprecated method Numeric#to_formatted_s
Diffstat (limited to 'activesupport/test/core_ext/numeric_ext_test.rb')
-rw-r--r--activesupport/test/core_ext/numeric_ext_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/test/core_ext/numeric_ext_test.rb b/activesupport/test/core_ext/numeric_ext_test.rb
index a6e5ea5ab7..19dc4e5136 100644
--- a/activesupport/test/core_ext/numeric_ext_test.rb
+++ b/activesupport/test/core_ext/numeric_ext_test.rb
@@ -376,12 +376,6 @@ class NumericExtFormattingTest < ActiveSupport::TestCase
assert_equal "1 Million", BigDecimal("1000010").to_s(:human)
end
- def test_to_formatted_s_is_deprecated
- assert_deprecated do
- 5551234.to_formatted_s(:phone)
- end
- end
-
def test_to_s_with_invalid_formatter
assert_equal "123", 123.to_s(:invalid)
assert_equal "2.5", 2.5.to_s(:invalid)