Mercurial > python-hglib
view tests/test-move.py @ 47:94d2988e55b7
client: add revert command
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Thu, 18 Aug 2011 14:29:29 +0300 |
parents | a2fc0a7f648e |
children | 4359cabcb0cc |
line wrap: on
line source
import common, os class test_move(common.basetest): def test_basic(self): self.append('a', 'a') self.client.add('a') self.assertTrue(self.client.move('a', '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'))