scm: fix indents of test/unit/changeset_test.rb.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5711 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-05-09 04:54:37 +00:00
parent e28ac7f880
commit 23a27bd6e4

View File

@ -327,32 +327,32 @@ class ChangesetTest < ActiveSupport::TestCase
end end
def test_invalid_utf8_sequences_in_paths_should_be_replaced def test_invalid_utf8_sequences_in_paths_should_be_replaced
proj = Project.find(3) proj = Project.find(3)
str1 = "Texte encod\xe9 en ISO-8859-1" str1 = "Texte encod\xe9 en ISO-8859-1"
str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test" str2 = "\xe9a\xe9b\xe9c\xe9d\xe9e test"
str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding) str1.force_encoding("UTF-8") if str1.respond_to?(:force_encoding)
str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding) str2.force_encoding("ASCII-8BIT") if str2.respond_to?(:force_encoding)
r = Repository::Bazaar.create!( r = Repository::Bazaar.create!(
:project => proj, :project => proj,
:url => '/tmp/test/bazaar', :url => '/tmp/test/bazaar',
:log_encoding => 'UTF-8' ) :log_encoding => 'UTF-8' )
assert r assert r
cs = Changeset.new( cs = Changeset.new(
:repository => r, :repository => r,
:committed_on => Time.now, :committed_on => Time.now,
:revision => '123', :revision => '123',
:scmid => '12345', :scmid => '12345',
:comments => "test") :comments => "test")
assert( cs.save ) assert(cs.save)
ch = Change.new( ch = Change.new(
:changeset => cs, :changeset => cs,
:action => "A", :action => "A",
:path => str1, :path => str1,
:from_path => str2, :from_path => str2,
:from_revision => "345") :from_revision => "345")
assert( ch.save ) assert(ch.save)
assert_equal "Texte encod? en ISO-8859-1", ch.path assert_equal "Texte encod? en ISO-8859-1", ch.path
assert_equal "?a?b?c?d?e test", ch.from_path assert_equal "?a?b?c?d?e test", ch.from_path
end end
def test_comments_nil def test_comments_nil