annotate tests/test-bookmarks.py @ 112:6190432f1d39

tests: fix test-bookmarks to match changed hg behavior After a fix in hg related to activating bookmarks, a test started failing
author Alexander Plavin <me@aplavin.ru>
date Thu, 02 May 2013 21:44:53 +0400
parents 5fe53db61aa4
children 2e2055fc66c3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
24
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
1 import common
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
2
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
3 class test_bookmarks(common.basetest):
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
4 def test_empty(self):
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
5 self.assertEquals(self.client.bookmarks(), ([], -1))
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
6
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
7 def test_basic(self):
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
8 self.append('a', 'a')
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
9 rev0, node0 = self.client.commit('first', addremove=True)
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
10 self.append('a', 'a')
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
11 rev1, node1 = self.client.commit('second')
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
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
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
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
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
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)
24
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
18 self.assertEquals(self.client.bookmarks(),
107
5fe53db61aa4 tests: fix tests that use integer bookmarks
Durham Goode <durham@fb.com>
parents: 24
diff changeset
19 ([('one', rev1, node1[:12]),
112
6190432f1d39 tests: fix test-bookmarks to match changed hg behavior
Alexander Plavin <me@aplavin.ru>
parents: 107
diff changeset
20 ('zero', rev0, node0[:12])], -1))
24
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
21
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
22 #def test_spaces(self):
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
23 # self.client.bookmark('s pace', self.rev0)
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
24 # self.assertEquals(self.client.bookmarks(),
ca0d7e212cf8 client: add bookmarks command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
25 # ([('s pace', 0, self.rev0.node[:12])], -1))