view tests/test-tags.py @ 142:fe74d5599539

hglib: wrap all application string literals in util.b() (issue4520) Conversion also included changing use of string interpolation to string concatenation as bytes interpolation does not exist in Python 3. Indexing related to bytes was also changed to length-1 bytes through slicing as Python 3 returns an int in this instance. Tests have not been switched to using util.b() so that the change to application code can be independently verified as not being broken.
author Brett Cannon <brett@python.org>
date Sun, 08 Mar 2015 13:08:37 -0400
parents 77ebb51f5f36
children 4359cabcb0cc
line wrap: on
line source

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)])