X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c51786d10bc6dda488964f468a6a3071dd6912a8..0e2a66e8de55b3719bd307261058b7f898598994:/test/lib/i18n_test.rb diff --git a/test/lib/i18n_test.rb b/test/lib/i18n_test.rb index 8145c3613..9c7d8e568 100644 --- a/test/lib/i18n_test.rb +++ b/test/lib/i18n_test.rb @@ -39,6 +39,8 @@ class I18nTest < ActiveSupport::TestCase assert_includes variables, Regexp.last_match(1), "#{key}.#{subkey} uses unknown interpolation variable #{Regexp.last_match(1)}" end end + + assert_includes value, :other, "#{key}.other plural key missing" else assert value.is_a?(String), "#{key} is not a string" @@ -61,13 +63,14 @@ class I18nTest < ActiveSupport::TestCase I18n.t(scope || ".", :locale => I18n.default_locale).map do |key, value| scoped_key = scope ? "#{scope}.#{key}" : key - if value.is_a?(Hash) + case value + when Hash if value.keys - plural_keys == [] scoped_key else translation_keys(scoped_key) end - elsif value.is_a?(String) + when String scoped_key end end.flatten