312
312
"""Create a tree with filenames chosen to exercise the walk order."""
313
313
tree1 = self.make_branch_and_tree('tree1')
314
314
tree2 = self.make_to_branch_and_tree('tree2')
315
from_paths = ['b-ar', 'b-foo', 'b-zar',
317
'b/', 'b/ar', 'b/foo/', 'b/zar',
322
331
self.build_tree(['tree2/' + p for p in from_paths])
323
332
paths_no_slashes = [p.strip('/') for p in from_paths]
324
333
path_ids = [p.replace('/', '_') + '-id' for p in paths_no_slashes]