view tests/test-copy.py @ 141:ea80bd2775f6

hglib: introduce util.b() (issue4520) The util.b() function will be used to mark all string literals in the code base which should be treated as bytes instead of text. This is to help with supporting Python 3.
author Brett Cannon <brett@python.org>
date Sat, 07 Mar 2015 10:08:52 -0500
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'))