Mercurial > python-hglib
annotate tests/test-move.py @ 143:4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
author | Brett Cannon <brett@python.org> |
---|---|
date | Mon, 09 Mar 2015 18:26:25 -0400 |
parents | a2fc0a7f648e |
children | c1b966866ed7 |
rev | line source |
---|---|
32 | 1 import common, os |
143
4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
Brett Cannon <brett@python.org>
parents:
32
diff
changeset
|
2 from hglib.util import b |
32 | 3 |
4 class test_move(common.basetest): | |
5 def test_basic(self): | |
6 self.append('a', 'a') | |
143
4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
Brett Cannon <brett@python.org>
parents:
32
diff
changeset
|
7 self.client.add(b('a')) |
4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
Brett Cannon <brett@python.org>
parents:
32
diff
changeset
|
8 self.assertTrue(self.client.move(b('a'), b('b'))) |
32 | 9 |
10 # hg returns 0 even if there were warnings | |
11 #def test_warnings(self): | |
12 # self.append('a', 'a') | |
13 # self.client.add('a') | |
14 # os.mkdir('c') | |
15 # self.assertFalse(self.client.move(['a', 'b'], 'c')) |