Commit d82738ad authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Add test for i18n number_to_human_size (#4208).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3034 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent cd110535
......@@ -19,6 +19,7 @@ require File.dirname(__FILE__) + '/../../../test_helper'
class Redmine::I18nTest < ActiveSupport::TestCase
include Redmine::I18n
include ActionView::Helpers::NumberHelper
def setup
@hook_module = Redmine::Hook
......@@ -84,6 +85,15 @@ class Redmine::I18nTest < ActiveSupport::TestCase
assert_equal Time.now.strftime('%H %M'), format_time(now, false)
end
def test_number_to_human_size_for_each_language
valid_languages.each do |lang|
set_language_if_valid lang
assert_nothing_raised "#{lang} failure" do
number_to_human_size(1024*1024*4)
end
end
end
def test_valid_languages
assert valid_languages.is_a?(Array)
assert valid_languages.first.is_a?(Symbol)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment