comparison tests/test_push_renames.py @ 1323:6fd0ec01553b stable

Merge to stable for release.
author Augie Fackler <raf@durin42.com>
date Tue, 05 May 2015 14:09:43 -0400
parents a36e87ae2380
children
comparison
equal deleted inserted replaced
1306:b13f320ff4e3 1323:6fd0ec01553b
64 ('random/dir with space/file with space', 64 ('random/dir with space/file with space',
65 None, None), 65 None, None),
66 ] 66 ]
67 self.commitchanges(changes) 67 self.commitchanges(changes)
68 self.pushrevisions() 68 self.pushrevisions()
69 self.assertEqual(self.repo['tip'].manifest().keys(), 69 self.assertEqual(sorted(self.repo['tip'].manifest().keys()),
70 ['a', 'c', 'b', 'e', 'd', 70 ['a', 'b', 'c', 'd', 'e',
71 'random2/dir with space/file with space']) 71 'random2/dir with space/file with space'])
72 72
73 def test_push_rename_tree(self): 73 def test_push_rename_tree(self):
74 repo = self.repo 74 repo = self.repo
75 75