Mercurial > python-hglib
diff tests/test-outgoing-incoming.py @ 27:46908f4b87d5
client: add bookmarks support to incoming and outgoing
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Thu, 11 Aug 2011 22:59:05 +0300 |
parents | b4e5c8745ef3 |
children | 4359cabcb0cc |
line wrap: on
line diff
--- a/tests/test-outgoing-incoming.py Thu Aug 11 22:58:38 2011 +0300 +++ b/tests/test-outgoing-incoming.py Thu Aug 11 22:59:05 2011 +0300 @@ -32,3 +32,20 @@ self.assertEquals(out[0].node, node) self.assertEquals(out, other.incoming()) + + def test_bookmarks(self): + self.append('a', 'a') + self.client.commit('first', addremove=True) + self.append('a', 'a') + self.client.commit('second') + + self.client.clone(dest='other') + other = hglib.open('other') + + self.client.bookmark('bm1', 1) + + self.assertEquals(other.incoming(bookmarks=True), + [('bm1', self.client.tip().node[:12])]) + + self.assertEquals(self.client.outgoing(path='other', bookmarks=True), + [('bm1', self.client.tip().node[:12])])