Mercurial > python-hglib
annotate tests/test-bookmarks.py @ 123:cdde1656346f
client: add 'hidden' property to show hidden changesets.
This enables interactions with the obsolete changesets in the repository:
- add the attribute in client class
- add the keyword to the relevant commands
- enable log without hidden changesets even when self.hidden is True
- add a few tests with the hidden keyword
This changeset mirrors the behavior of the mercurial global command --hidden:
an attribute is added to the client library. If set at True, adds the hidden
keyword to all command which can use it to show hidden changesets.
The alternative would be to add the keyword in rawcommand, but the hidden flag
is not relevant for commands such as add or branch.
author | Paul Tonelli <paul.tonelli@logilab.fr> |
---|---|
date | Thu, 22 May 2014 15:23:12 +0200 |
parents | 2e2055fc66c3 |
children | 4359cabcb0cc |
rev | line source |
---|---|
24 | 1 import common |
2 | |
3 class test_bookmarks(common.basetest): | |
4 def test_empty(self): | |
5 self.assertEquals(self.client.bookmarks(), ([], -1)) | |
6 | |
7 def test_basic(self): | |
8 self.append('a', 'a') | |
9 rev0, node0 = self.client.commit('first', addremove=True) | |
10 self.append('a', 'a') | |
11 rev1, node1 = self.client.commit('second') | |
12 | |
107
5fe53db61aa4
tests: fix tests that use integer bookmarks
Durham Goode <durham@fb.com>
parents:
24
diff
changeset
|
13 self.client.bookmark('zero', rev0) |
24 | 14 self.assertEquals(self.client.bookmarks(), |
107
5fe53db61aa4
tests: fix tests that use integer bookmarks
Durham Goode <durham@fb.com>
parents:
24
diff
changeset
|
15 ([('zero', rev0, node0[:12])], -1)) |
24 | 16 |
107
5fe53db61aa4
tests: fix tests that use integer bookmarks
Durham Goode <durham@fb.com>
parents:
24
diff
changeset
|
17 self.client.bookmark('one', rev1) |
114
2e2055fc66c3
tests: ignore bookmarks active mark for testing with pre-2.6
Matt Mackall <mpm@selenic.com>
parents:
112
diff
changeset
|
18 self.assertEquals(self.client.bookmarks()[0], |
2e2055fc66c3
tests: ignore bookmarks active mark for testing with pre-2.6
Matt Mackall <mpm@selenic.com>
parents:
112
diff
changeset
|
19 [('one', rev1, node1[:12]), |
2e2055fc66c3
tests: ignore bookmarks active mark for testing with pre-2.6
Matt Mackall <mpm@selenic.com>
parents:
112
diff
changeset
|
20 ('zero', rev0, node0[:12])]) |
24 | 21 |
22 #def test_spaces(self): | |
23 # self.client.bookmark('s pace', self.rev0) | |
24 # self.assertEquals(self.client.bookmarks(), | |
25 # ([('s pace', 0, self.rev0.node[:12])], -1)) |