Mercurial > python-hglib
view tests/test-move.py @ 148:c1b966866ed7
hglib: make all imports absolute (issue4520)
author | Brett Cannon <brett@python.org> |
---|---|
date | Fri, 13 Mar 2015 14:46:13 -0400 |
parents | 4359cabcb0cc |
children |
line wrap: on
line source
import os from tests import common from hglib.util import b class test_move(common.basetest): def test_basic(self): self.append('a', 'a') self.client.add(b('a')) self.assertTrue(self.client.move(b('a'), b('b'))) # hg returns 0 even if there were warnings #def test_warnings(self): # self.append('a', 'a') # self.client.add('a') # os.mkdir('c') # self.assertFalse(self.client.move(['a', 'b'], 'c'))