From bb851651f19ae91b800c7eff220690d8ca8fc368 Mon Sep 17 00:00:00 2001 From: Stefan Daschek Date: Wed, 8 Jul 2015 14:59:47 +0200 Subject: Allow `pluralize` helper to take a locale. This is already supported in `ActiveSupport::Inflector#pluralize` and `String#pluralize`, so we just forward the locale. --- actionview/test/template/text_helper_test.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'actionview/test') diff --git a/actionview/test/template/text_helper_test.rb b/actionview/test/template/text_helper_test.rb index f1b84c4786..5791f33069 100644 --- a/actionview/test/template/text_helper_test.rb +++ b/actionview/test/template/text_helper_test.rb @@ -383,6 +383,18 @@ class TextHelperTest < ActionView::TestCase assert_equal("12 berries", pluralize(12, "berry")) end + def test_pluralization_with_locale + ActiveSupport::Inflector.inflections(:de) do |inflect| + inflect.plural(/(person)$/i, '\1en') + inflect.singular(/(person)en$/i, '\1') + end + + assert_equal("2 People", pluralize(2, "Person", locale: :en)) + assert_equal("2 Personen", pluralize(2, "Person", locale: :de)) + + ActiveSupport::Inflector.inflections(:de).clear + end + def test_cycle_class value = Cycle.new("one", 2, "3") assert_equal("one", value.to_s) -- cgit v1.2.3