scm: git: add tests for path encoding entries() in unit adapter test (#5251).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5050 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
3a39fc6176
commit
3abdd84a49
|
@ -171,6 +171,16 @@ begin
|
||||||
assert_equal Time.gm(2009, 6, 19, 4, 37, 23), readme.lastrev.time
|
assert_equal Time.gm(2009, 6, 19, 4, 37, 23), readme.lastrev.time
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def test_entries_latin_1_path
|
||||||
|
entries1 = @adapter.entries('latin-1-dir', '64f1f3e8')
|
||||||
|
assert entries1
|
||||||
|
assert_equal 3, entries1.size
|
||||||
|
f1 = entries1[1]
|
||||||
|
assert_equal "test-#{@char_1}-2.txt", f1.name
|
||||||
|
assert_equal "latin-1-dir/test-#{@char_1}-2.txt", f1.path
|
||||||
|
assert_equal 'file', f1.kind
|
||||||
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def test_scm_version_for(scm_command_version, version)
|
def test_scm_version_for(scm_command_version, version)
|
||||||
|
|
Loading…
Reference in New Issue