scm: more strict to_utf8() test in repository helper on Ruby 1.9.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5387 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-04-11 03:06:43 +00:00
parent d5bb4b349a
commit bf68788867
1 changed files with 3 additions and 1 deletions

View File

@ -89,7 +89,9 @@ class RepositoryHelperTest < HelperTestCase
def test_to_utf8_invalid_utf8_sequences_should_be_stripped
with_settings :repositories_encodings => '' do
s1 = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt")
# s1 = File.read("#{RAILS_ROOT}/test/fixtures/encoding/iso-8859-1.txt")
s1 = "Texte encod\xe9 en ISO-8859-1."
s1.force_encoding("ASCII-8BIT") if s1.respond_to?(:force_encoding)
str = to_utf8(s1)
if str.respond_to?(:force_encoding)
assert_equal "Texte encod? en ISO-8859-1.", str