aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/inflector_test.rb
diff options
context:
space:
mode:
authorEito Katagiri <eitoball@gmail.com>2013-10-12 20:47:57 +0900
committerEito Katagiri <eitoball@gmail.com>2015-07-02 09:53:34 +0900
commitc7fc843431ffd2b775cc798d4c2c844fee3c9958 (patch)
tree553ea6d398127b3afe2385bdd5f4211b4354e8d3 /activesupport/test/inflector_test.rb
parent776e5991a9abf11818cb803e80976cea8b454c17 (diff)
downloadrails-c7fc843431ffd2b775cc798d4c2c844fee3c9958.tar.gz
rails-c7fc843431ffd2b775cc798d4c2c844fee3c9958.tar.bz2
rails-c7fc843431ffd2b775cc798d4c2c844fee3c9958.zip
fix pluralize behavior for words that consist of non-ascii characters
The code below returns "猫" in 3.2, but "猫s" in 4.0. ```ruby ActiveSupport::Inflector.inflections do |inflect| inflect.uncountable "猫" end "猫".pluralize ```
Diffstat (limited to 'activesupport/test/inflector_test.rb')
-rw-r--r--activesupport/test/inflector_test.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/activesupport/test/inflector_test.rb b/activesupport/test/inflector_test.rb
index a0764f6d6b..56bc6bb99f 100644
--- a/activesupport/test/inflector_test.rb
+++ b/activesupport/test/inflector_test.rb
@@ -1,3 +1,4 @@
+# encoding: utf-8
require 'abstract_unit'
require 'active_support/inflector'
@@ -31,6 +32,14 @@ class InflectorTest < ActiveSupport::TestCase
assert_equal "", ActiveSupport::Inflector.pluralize("")
end
+ def test_pluralize_for_words_with_non_ascii_characters
+ ActiveSupport::Inflector.inflections do |inflect|
+ inflect.uncountable "猫"
+ end
+ assert_equal "猫", ActiveSupport::Inflector.pluralize("猫")
+ ActiveSupport::Inflector.inflections.uncountables.pop
+ end
+
ActiveSupport::Inflector.inflections.uncountable.each do |word|
define_method "test_uncountability_of_#{word}" do
assert_equal word, ActiveSupport::Inflector.singularize(word)