Mercurial > hgsubversion
diff tests/test_fetch_branches.py @ 587:c06f59441f8e
editor: fix replaced directory copies
Known failures:
- Replaced directories copy records are wrong in stupid mode
- Replaced files copy records are probably wrong in all modes
author | Patrick Mezard <pmezard@gmail.com> |
---|---|
date | Tue, 02 Mar 2010 17:06:06 +0100 |
parents | c3ba4ca81d16 |
children | 2723152c8111 |
line wrap: on
line diff
--- a/tests/test_fetch_branches.py +++ b/tests/test_fetch_branches.py @@ -141,11 +141,13 @@ class TestFetchBranches(test_util.TestBa self.assertEqual('branch1', ctx.branch()) # r5 is where the replacement takes place ctx = repo[5] - self.assertEqual(set(['a', 'c']), set(ctx)) + self.assertEqual(set(['a', 'c', 'dir/e', 'dir2/e']), set(ctx)) self.assertEqual('0', ctx.extra().get('close', '0')) self.assertEqual('branch1', ctx.branch()) self.assertEqual('c\n', ctx['c'].data()) self.assertEqual('d\n', ctx['a'].data()) + self.assertEqual('e\n', ctx['dir/e'].data()) + self.assertEqual('e\n', ctx['dir2/e'].data()) def test_replace_branch_with_branch_stupid(self, stupid=False): self.test_replace_branch_with_branch(True)