scm: mercurial: prepare tests of named branch and tag in unit model test (#1981, #7246).

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5117 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-03-14 08:15:00 +00:00
parent 620e428e95
commit 7e96ea617c
1 changed files with 6 additions and 0 deletions

View File

@ -34,8 +34,14 @@ class RepositoryMercurialTest < ActiveSupport::TestCase
) )
assert @repository assert @repository
@char_1 = CHAR_1_HEX.dup @char_1 = CHAR_1_HEX.dup
@tag_char_1 = "tag-#{CHAR_1_HEX}-00"
@branch_char_0 = "branch-#{CHAR_1_HEX}-00"
@branch_char_1 = "branch-#{CHAR_1_HEX}-01"
if @char_1.respond_to?(:force_encoding) if @char_1.respond_to?(:force_encoding)
@char_1.force_encoding('UTF-8') @char_1.force_encoding('UTF-8')
@tag_char_1.force_encoding('UTF-8')
@branch_char_0.force_encoding('UTF-8')
@branch_char_1.force_encoding('UTF-8')
end end
end end