view tests/test-branches.py @ 164:568bca4ff58e

tests: update test-summary for mercurial 3.5 changeset 1ef96a3b8b89 added some phases information to 'hg summary'. Reported at https://bugs.debian.org/797287
author Julien Cristau <julien.cristau@logilab.fr>
date Mon, 31 Aug 2015 09:52:34 +0200
parents c1b966866ed7
children
line wrap: on
line source

from tests import common
import hglib
from hglib.util import b

class test_branches(common.basetest):
    def test_empty(self):
        self.assertEquals(self.client.branches(), [])

    def test_basic(self):
        self.append('a', 'a')
        rev0 = self.client.commit(b('first'), addremove=True)
        self.client.branch(b('foo'))
        self.append('a', 'a')
        rev1 = self.client.commit(b('second'))
        branches = self.client.branches()

        expected = []
        for r, n in (rev1, rev0):
            r = self.client.log(r)[0]
            expected.append((r.branch, int(r.rev), r.node[:12]))

        self.assertEquals(branches, expected)

    def test_active_closed(self):
        pass