Mercurial > python-hglib
view tests/test-bookmarks.py @ 107:5fe53db61aa4 0.4
tests: fix tests that use integer bookmarks
Integer bookmarks are now not allowed (since they alias with revision numbers),
so a hglib test was failing.
author | Durham Goode <durham@fb.com> |
---|---|
date | Fri, 08 Feb 2013 03:51:42 -0800 |
parents | ca0d7e212cf8 |
children | 6190432f1d39 |
line wrap: on
line source
import common 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('first', addremove=True) self.append('a', 'a') rev1, node1 = self.client.commit('second') self.client.bookmark('zero', rev0) self.assertEquals(self.client.bookmarks(), ([('zero', rev0, node0[:12])], -1)) self.client.bookmark('one', rev1) self.assertEquals(self.client.bookmarks(), ([('one', rev1, node1[:12]), ('zero', rev0, node0[:12])], 0)) #def test_spaces(self): # self.client.bookmark('s pace', self.rev0) # self.assertEquals(self.client.bookmarks(), # ([('s pace', 0, self.rev0.node[:12])], -1))