Mercurial > python-hglib
annotate tests/test-remove.py @ 133:b6f601ba7f3c
style: fixup whitespace
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Tue, 30 Sep 2014 11:23:15 -0500 |
parents | b7042bb3dbfd |
children | 4359cabcb0cc |
rev | line source |
---|---|
30 | 1 import common |
2 | |
3 class test_remove(common.basetest): | |
4 def test_basic(self): | |
5 self.append('a', 'a') | |
6 self.client.commit('first', addremove=True) | |
7 self.assertTrue(self.client.remove(['a'])) | |
8 | |
9 def test_warnings(self): | |
10 self.append('a', 'a') | |
11 self.client.commit('first', addremove=True) | |
12 self.assertFalse(self.client.remove(['a', 'b'])) |