Mercurial > python-hglib
view tests/test-outgoing-incoming.py @ 15:f1af31960414
client: change return value of commit() to (rev, node)
this is the original output hg emits with commit --debug
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Wed, 10 Aug 2011 19:59:08 +0300 |
parents | eac8be119d81 |
children | b4e5c8745ef3 |
line wrap: on
line source
import common import hglib class test_outgoing_incoming(common.basetest): def test_basic(self): self.append('a', 'a') self.client.commit('first', addremove=True) self.append('a', 'a') self.client.commit('second') self.client.clone(dest='bar') bar = hglib.open('bar') self.assertEquals(self.client.log(), bar.log()) self.assertEquals(self.client.outgoing(path='bar'), bar.incoming()) self.append('a', 'a') rev, node = self.client.commit('third') out = self.client.outgoing(path='bar') self.assertEquals(len(out), 1) self.assertEquals(out[0].node, node) self.assertEquals(out, bar.incoming())