aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2019-01-15 17:02:22 -0500
committerRafael Mendonça França <rafaelmfranca@gmail.com>2019-01-17 16:08:33 -0500
commit0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689 (patch)
treeb94dfc8450a782d99523c242e5bda269dbef390d /activesupport/test
parent6c745b0c5152a4437163a67707e02f4464493983 (diff)
downloadrails-0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689.tar.gz
rails-0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689.tar.bz2
rails-0ce67d3cd6d1b7b9576b07fecae3dd5b422a5689.zip
Remove deprecated `#acronym_regex` method from `Inflections`
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/inflector_test.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index 5e50acf5db..c3e1faff5d 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -224,12 +224,6 @@ class InflectorTest < ActiveSupport::TestCase
assert_equal("json_html_api", ActiveSupport::Inflector.underscore("JSONHTMLAPI"))
end
- def test_acronym_regexp_is_deprecated
- assert_deprecated do
- ActiveSupport::Inflector.inflections.acronym_regex
- end
- end
-
def test_underscore
CamelToUnderscore.each do |camel, underscore|
assert_equal(underscore, ActiveSupport::Inflector.underscore(camel))