]> source.dussan.org Git - redmine.git/commitdiff
scm: git: test: lib: update branches test for Branch class (#5501)
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 28 Oct 2011 05:18:28 +0000 (05:18 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Fri, 28 Oct 2011 05:18:28 +0000 (05:18 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7672 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/scm/adapters/git_adapter_test.rb

index 96bdb4d0a6136b20f2fbd3e40a6f7029cb55b2e3..c5da9732a7072a28448934219e23c77676b21633 100644 (file)
@@ -61,12 +61,23 @@ begin
       end
 
       def test_branches
-        assert_equal  [
-              'latin-1-path-encoding',
-              'master',
-              'test-latin-1',
-              'test_branch',
-            ], @adapter.branches
+        brs = []
+        @adapter.branches.each do |b|
+          brs << b
+        end
+        assert_equal 4, brs.length
+        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
 
       def test_tags