fune/third_party/python/python-hglib/tests/test-bookmarks.py
Sofia Carrillo 0c81030974 Bug 1463834 - vendored hglib, updated to python-hglib r=davehunt
--HG--
rename : third_party/python/hglib/LICENSE => third_party/python/python-hglib/LICENSE
rename : third_party/python/hglib/hglib/__init__.py => third_party/python/python-hglib/hglib/__init__.py
rename : third_party/python/hglib/hglib/client.py => third_party/python/python-hglib/hglib/client.py
rename : third_party/python/hglib/hglib/context.py => third_party/python/python-hglib/hglib/context.py
rename : third_party/python/hglib/hglib/error.py => third_party/python/python-hglib/hglib/error.py
rename : third_party/python/hglib/hglib/merge.py => third_party/python/python-hglib/hglib/merge.py
rename : third_party/python/hglib/hglib/templates.py => third_party/python/python-hglib/hglib/templates.py
rename : third_party/python/hglib/hglib/util.py => third_party/python/python-hglib/hglib/util.py
rename : third_party/python/hglib/setup.py => third_party/python/python-hglib/setup.py
extra : rebase_source : 552d93c9e90c04171c8b627c8f4f4fa5ec506cc3
2018-05-31 18:04:54 -07:00

26 lines
969 B
Python

from tests import common
from hglib.util import b
class test_bookmarks(common.basetest):
def test_empty(self):
self.assertEquals(self.client.bookmarks(), ([], -1))
def test_basic(self):
self.append('a', 'a')
rev0, node0 = self.client.commit(b('first'), addremove=True)
self.append('a', 'a')
rev1, node1 = self.client.commit(b('second'))
self.client.bookmark(b('zero'), rev0)
self.assertEquals(self.client.bookmarks(),
([(b('zero'), rev0, node0[:12])], -1))
self.client.bookmark(b('one'), rev1)
self.assertEquals(self.client.bookmarks()[0],
[(b('one'), rev1, node1[:12]),
(b('zero'), rev0, node0[:12])])
#def test_spaces(self):
# self.client.bookmark('s pace', self.rev0)
# self.assertEquals(self.client.bookmarks(),
# ([('s pace', 0, self.rev0.node[:12])], -1))