Mercurial > python-hglib
annotate tests/test-forget.py @ 144:3c59643a2bc3
test-commit: drop print statements
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 11 Mar 2015 14:53:36 -0500 |
parents | 4359cabcb0cc |
children | c1b966866ed7 |
rev | line source |
---|---|
31 | 1 import common |
143
4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
Brett Cannon <brett@python.org>
parents:
31
diff
changeset
|
2 from hglib.util import b |
31 | 3 |
4 class test_forget(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:
31
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:
31
diff
changeset
|
8 self.assertTrue(self.client.forget(b('a'))) |
31 | 9 |
10 def test_warnings(self): | |
143
4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
Brett Cannon <brett@python.org>
parents:
31
diff
changeset
|
11 self.assertFalse(self.client.forget(b('a'))) |
31 | 12 self.append('a', 'a') |
143
4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
Brett Cannon <brett@python.org>
parents:
31
diff
changeset
|
13 self.client.add([b('a')]) |
4359cabcb0cc
hglib: move string literals in the test code to util.b() (issue4520)
Brett Cannon <brett@python.org>
parents:
31
diff
changeset
|
14 self.assertFalse(self.client.forget([b('a'), b('b')])) |