annotate tests/test-bundle.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 29d01b5dc38c
children 4359cabcb0cc
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
54
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
1 import common
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
2
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
3 class test_bundle(common.basetest):
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
4 def test_no_changes(self):
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
5 self.append('a', 'a')
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
6 rev, node0 = self.client.commit('first', addremove=True)
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
7 self.assertFalse(self.client.bundle('bundle', destrepo='.'))
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
8
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
9 def test_basic(self):
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
10 self.append('a', 'a')
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
11 rev, node0 = self.client.commit('first', addremove=True)
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
12 self.client.clone(dest='other')
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
13
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
14 self.append('a', 'a')
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
15 rev, node1 = self.client.commit('second')
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
16
29d01b5dc38c client: add bundle command
Idan Kamara <idankk86@gmail.com>
parents:
diff changeset
17 self.assertTrue(self.client.bundle('bundle', destrepo='other'))