annotate tests/test-remove.py @ 128:838c5a91ed44
tests: skip test using assertIn on Python < 2.7
author |
Matt Mackall <mpm@selenic.com> |
date |
Thu, 31 Jul 2014 15:30:51 -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']))
|