scm: git: test: lib: update branches test for Branch class (#5501)

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7672 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-10-28 05:18:28 +00:00
parent cec6f5c3b0
commit daae07f47c
1 changed files with 17 additions and 6 deletions

View File

@ -61,12 +61,23 @@ begin
end end
def test_branches def test_branches
assert_equal [ brs = []
'latin-1-path-encoding', @adapter.branches.each do |b|
'master', brs << b
'test-latin-1', end
'test_branch', assert_equal 4, brs.length
], @adapter.branches assert_equal 'latin-1-path-encoding', brs[0].to_s
assert_equal '1ca7f5ed374f3cb31a93ae5215c2e25cc6ec5127', brs[0].revision
assert_equal brs[0].scmid, brs[0].revision
assert_equal 'master', brs[1].to_s
assert_equal '83ca5fd546063a3c7dc2e568ba3355661a9e2b2c', brs[1].revision
assert_equal brs[1].scmid, brs[1].revision
assert_equal 'test-latin-1', brs[2].to_s
assert_equal '67e7792ce20ccae2e4bb73eed09bb397819c8834', brs[2].revision
assert_equal brs[2].scmid, brs[2].revision
assert_equal 'test_branch', brs[3].to_s
assert_equal 'fba357b886984ee71185ad2065e65fc0417d9b92', brs[3].revision
assert_equal brs[3].scmid, brs[3].revision
end end
def test_tags def test_tags