]> source.dussan.org Git - redmine.git/commitdiff
replace hard-coded non ASCII literal to UTF-8 hexadecimal at test/unit/wiki_test.rb
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 14 Mar 2012 01:16:05 +0000 (01:16 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Wed, 14 Mar 2012 01:16:05 +0000 (01:16 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9239 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/wiki_test.rb

index 923ff528e28033a000ee3bd6d2041060ad0a0f28..4b6f817eddf1ac94caa800885539912aaa3c7aeb 100644 (file)
@@ -78,8 +78,10 @@ class WikiTest < ActiveSupport::TestCase
   end
 
   def test_titleize
+    ja_test = "\xe3\x83\x86\xe3\x82\xb9\xe3\x83\x88"
+    ja_test.force_encoding('UTF-8') if ja_test.respond_to?(:force_encoding)
     assert_equal 'Page_title_with_CAPITALES', Wiki.titleize('page title with CAPITALES')
-    assert_equal 'テスト', Wiki.titleize('テスト')
+    assert_equal ja_test, Wiki.titleize(ja_test)
   end
 
   context "#sidebar" do