Mercurial > python-hglib
comparison tests/test-remove.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 | b7042bb3dbfd |
children | c1b966866ed7 |
comparison
equal
deleted
inserted
replaced
142:fe74d5599539 | 143:4359cabcb0cc |
---|---|
1 import common | 1 import common |
2 from hglib.util import b | |
2 | 3 |
3 class test_remove(common.basetest): | 4 class test_remove(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.commit('first', addremove=True) | 7 self.client.commit(b('first'), addremove=True) |
7 self.assertTrue(self.client.remove(['a'])) | 8 self.assertTrue(self.client.remove([b('a')])) |
8 | 9 |
9 def test_warnings(self): | 10 def test_warnings(self): |
10 self.append('a', 'a') | 11 self.append('a', 'a') |
11 self.client.commit('first', addremove=True) | 12 self.client.commit(b('first'), addremove=True) |
12 self.assertFalse(self.client.remove(['a', 'b'])) | 13 self.assertFalse(self.client.remove([b('a'), b('b')])) |