Mercurial > python-hglib
diff tests/test-tags.py @ 43:77ebb51f5f36
client: add tags command
author | Idan Kamara <idankk86@gmail.com> |
---|---|
date | Mon, 15 Aug 2011 22:46:45 +0300 |
parents | |
children | 4359cabcb0cc |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/test-tags.py Mon Aug 15 22:46:45 2011 +0300 @@ -0,0 +1,19 @@ +import common +import hglib + +class test_tags(common.basetest): + def test_basic(self): + self.append('a', 'a') + rev, node = self.client.commit('first', addremove=True) + self.client.tag('my tag') + self.client.tag('local tag', rev=rev, local=True) + + # filecache that was introduced in 2.0 makes us see the local tag, for + # now we have to reconnect + if self.client.version < (2, 0, 0): + self.client = hglib.open() + + tags = self.client.tags() + self.assertEquals(tags, [('tip', 1, self.client.tip().node[:12], False), + ('my tag', 0, node[:12], False), + ('local tag', 0, node[:12], True)])