Mercurial > python-hglib
view tests/test-push.py @ 78:031cbb8d4f65
examples: add simple stat-gathering example
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Wed, 09 Nov 2011 14:07:29 -0600 |
parents | 0555d58a7313 |
children | 4359cabcb0cc |
line wrap: on
line source
import common, hglib class test_push(common.basetest): def test_basic(self): self.append('a', 'a') self.client.commit('first', addremove=True) self.client.clone(dest='other') other = hglib.open('other') # broken in hg, doesn't return 1 if nothing to push #self.assertFalse(self.client.push('other')) self.append('a', 'a') self.client.commit('second') self.assertTrue(self.client.push('other')) self.assertEquals(self.client.log(), other.log())