564
564
tree = self.make_branch_and_tree('tree')
566
566
tt = transform.TreeTransform(tree)
567
tt.new_file('a', tt.root, 'contents\n', 'a-id', True)
568
tt.new_file('b', tt.root, 'contents\n', 'b-id', False)
569
tt.new_file('c', tt.root, 'contents\n', 'c-id', True)
570
tt.new_file('d', tt.root, 'contents\n', 'd-id', False)
571
tt.new_file('e', tt.root, 'contents\n', 'control-e-id', True)
572
tt.new_file('f', tt.root, 'contents\n', 'control-f-id', False)
567
tt.new_file('a', tt.root, ['contents\n'], b'a-id', True)
568
tt.new_file('b', tt.root, ['contents\n'], b'b-id', False)
569
tt.new_file('c', tt.root, ['contents\n'], b'c-id', True)
570
tt.new_file('d', tt.root, ['contents\n'], b'd-id', False)
571
tt.new_file('e', tt.root, ['contents\n'], b'control-e-id', True)
572
tt.new_file('f', tt.root, ['contents\n'], b'control-f-id', False)
574
574
tree.commit('one', rev_id=b'rev-1')