File: test-copy.py

package info (click to toggle)
python-hglib 2.6.2-3
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: python: 3,245; makefile: 20
file content (23 lines) | stat: -rw-r--r-- 818 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from tests import common
import hglib
from hglib.util import b

class test_copy(common.basetest):
    def test_basic(self):
        self.append('a', 'a')
        self.client.commit(b('first'), addremove=True)

        self.assertTrue(self.client.copy(b('a'), b('b')))
        self.assertEquals(self.client.status(), [(b('A'), b('b'))])
        self.append('c', 'a')
        self.assertTrue(self.client.copy(b('a'), b('c'), after=True))
        self.assertEquals(self.client.status(),
                          [(b('A'), b('b')), (b('A'), b('c'))])

    # hg returns 0 even if there were warnings
    #def test_warnings(self):
    #    self.append('a', 'a')
    #    self.client.commit('first', addremove=True)

    #    self.assertTrue(self.client.copy('a', 'b'))
    #    self.assertFalse(self.client.copy('a', 'b'))