]> source.dussan.org Git - redmine.git/commitdiff
scm: more strict to_utf8() test in repository helper on Ruby 1.9.
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 11 Apr 2011 03:06:43 +0000 (03:06 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 11 Apr 2011 03:06:43 +0000 (03:06 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5387 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/helpers/repository_helper_test.rb

index 23067ea5442bc3314c8c142429dbfdb5b86d9a33..9532c3011efedd69941539db956bd79a09fe5342 100644 (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