Mercurial > public > mercurial-scm > python-hglib
annotate tests/test-push.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 | 0555d58a7313 |
children | 4359cabcb0cc |
rev | line source |
---|---|
39 | 1 import common, hglib |
2 | |
3 class test_push(common.basetest): | |
4 def test_basic(self): | |
5 self.append('a', 'a') | |
6 self.client.commit('first', addremove=True) | |
7 | |
8 self.client.clone(dest='other') | |
9 other = hglib.open('other') | |
10 | |
11 # broken in hg, doesn't return 1 if nothing to push | |
12 #self.assertFalse(self.client.push('other')) | |
13 | |
14 self.append('a', 'a') | |
15 self.client.commit('second') | |
16 | |
17 self.assertTrue(self.client.push('other')) | |
18 self.assertEquals(self.client.log(), other.log()) |