File: test-branch.py

package info (click to toggle)
python-hglib 1.4-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 312 kB
  • sloc: python: 2,098; makefile: 20
file content (44 lines) | stat: -rw-r--r-- 1,501 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import common
import hglib

class test_branch(common.basetest):
    def test_empty(self):
        self.assertEquals(self.client.branch(), 'default')

    def test_basic(self):
        self.assertEquals(self.client.branch('foo'), 'foo')
        self.append('a', 'a')
        rev, node = self.client.commit('first', addremove=True)

        rev = self.client.log(node)[0]

        self.assertEquals(rev.branch, 'foo')
        self.assertEquals(self.client.branches(),
                          [(rev.branch, int(rev.rev), rev.node[:12])])

    def test_reset_with_name(self):
        self.assertRaises(ValueError, self.client.branch, 'foo', clean=True)

    def test_reset(self):
        self.client.branch('foo')
        self.assertEquals(self.client.branch(clean=True), 'default')

    def test_exists(self):
        self.append('a', 'a')
        self.client.commit('first', addremove=True)
        self.client.branch('foo')
        self.append('a', 'a')
        self.client.commit('second')
        self.assertRaises(hglib.error.CommandError,
                          self.client.branch, 'default')

    def test_force(self):
        self.append('a', 'a')
        self.client.commit('first', addremove=True)
        self.client.branch('foo')
        self.append('a', 'a')
        self.client.commit('second')

        self.assertRaises(hglib.error.CommandError,
                          self.client.branch, 'default')
        self.assertEquals(self.client.branch('default', force=True), 'default')