comparison 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
comparison
equal deleted inserted replaced
142:fe74d5599539 143:4359cabcb0cc
1 import common, os 1 import common, os
2 from hglib.util import b
2 3
3 class test_move(common.basetest): 4 class test_move(common.basetest):
4 def test_basic(self): 5 def test_basic(self):
5 self.append('a', 'a') 6 self.append('a', 'a')
6 self.client.add('a') 7 self.client.add(b('a'))
7 self.assertTrue(self.client.move('a', 'b')) 8 self.assertTrue(self.client.move(b('a'), b('b')))
8 9
9 # hg returns 0 even if there were warnings 10 # hg returns 0 even if there were warnings
10 #def test_warnings(self): 11 #def test_warnings(self):
11 # self.append('a', 'a') 12 # self.append('a', 'a')
12 # self.client.add('a') 13 # self.client.add('a')