annotate tests/test-remove.py @ 120:5d3783aebe5f
1.2
log: fix 'hidden' option
We were passing -h, which is 'help', not 'hidden'.
author |
Julien Cristau <julien.cristau@logilab.fr> |
date |
Mon, 27 Jan 2014 09:29:55 +0100 |
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']))
|