aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2013-03-16 07:59:47 -0700
committerXavier Noria <fxn@hashref.com>2013-03-16 07:59:47 -0700
commit867dc1700f32aae6f98c4651bd501597e6b52bc0 (patch)
tree5b60adcd0d0a902f40b0fb242bb79ce037d3ef38 /activesupport/test
parent9a421aaa8285cf2a7ecb1af370748b0337818930 (diff)
parent26aa26564d16b7830ea4889168adfad8468186b7 (diff)
downloadrails-867dc1700f32aae6f98c4651bd501597e6b52bc0.tar.gz
rails-867dc1700f32aae6f98c4651bd501597e6b52bc0.tar.bz2
rails-867dc1700f32aae6f98c4651bd501597e6b52bc0.zip
Merge pull request #8156 from fredwu/acronym_fix-master
Fix for inflector's incorrect camelCase replacement for acronyms
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/inflector_test.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index 4806ce07f6..2b74055e68 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -167,11 +167,13 @@ class InflectorTest < ActiveSupport::TestCase
def test_underscore_acronym_sequence
ActiveSupport::Inflector.inflections do |inflect|
inflect.acronym("API")
+ inflect.acronym("APIs")
inflect.acronym("JSON")
inflect.acronym("HTML")
end
assert_equal("json_html_api", ActiveSupport::Inflector.underscore("JSONHTMLAPI"))
+ assert_equal("namespaced/apis", ActiveSupport::Inflector.underscore("Namespaced::APIs"))
end
def test_underscore