Browse Source

replace hard-coded non ASCII literal to UTF-8 hexadecimal at test/unit/wiki_test.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9239 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Toshi MARUYAMA 12 years ago
parent
commit
224331dacb
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      test/unit/wiki_test.rb

+ 3
- 1
test/unit/wiki_test.rb View 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

Loading…
Cancel
Save