Mercurial > public > mercurial-scm > python-hglib
comparison tests/test-push.py @ 39:0555d58a7313
client: add push command
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Mon, 15 Aug 2011 22:46:45 +0300 |
parents | |
children | 4359cabcb0cc |
comparison
equal
deleted
inserted
replaced
38:32f6a2bbf63e | 39:0555d58a7313 |
---|---|
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()) |