fix unit test fails on Ruby 1.8 and JRuby (#2190)

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9850 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2012-06-17 09:34:12 +00:00
parent dbdc9b9da7
commit b93e040bb8
1 changed files with 3 additions and 1 deletions

View File

@ -44,7 +44,9 @@ class Redmine::I18nTest < ActiveSupport::TestCase
today = now = Time.parse('2011-02-20 14:00:00')
Setting.date_format = '%d %B %Y'
User.current.language = 'fr'
assert_equal "20 f\u00E9vrier 2011", format_date(today)
s1 = "20 f\xc3\xa9vrier 2011"
s1.force_encoding("UTF-8") if s1.respond_to?(:force_encoding)
assert_equal s1, format_date(today)
User.current.language = nil
assert_equal '20 Febrero 2011', format_date(today)
end