view tests/test-copy.py @ 142:fe74d5599539

hglib: wrap all application string literals in util.b() (issue4520) Conversion also included changing use of string interpolation to string concatenation as bytes interpolation does not exist in Python 3. Indexing related to bytes was also changed to length-1 bytes through slicing as Python 3 returns an int in this instance. Tests have not been switched to using util.b() so that the change to application code can be independently verified as not being broken.
author Brett Cannon <brett@python.org>
date Sun, 08 Mar 2015 13:08:37 -0400
parents f6e1d9a6e0cd
children 4359cabcb0cc
line wrap: on
line source

import common
import hglib

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

        self.assertTrue(self.client.copy('a', 'b'))
        self.assertEquals(self.client.status(), [('A', 'b')])
        self.append('c', 'a')
        self.assertTrue(self.client.copy('a', 'c', after=True))
        self.assertEquals(self.client.status(), [('A', 'b'), ('A', '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'))