annotate tests/test-remove.py @ 102:cc2b7540fa2b
0.2
tests: don't set the time zone
There seems to be no need and it misbehaves on Windows.
author |
Idan Kamara <idankk86@gmail.com> |
date |
Wed, 18 Jan 2012 00:39:25 +0200 |
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']))
|