/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/repository_implementations/test_commit_builder.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
        finally:
57
57
            tree.unlock()
58
58
 
 
59
    def test_abort(self):
 
60
        tree = self.make_branch_and_tree(".")
 
61
        tree.lock_write()
 
62
        try:
 
63
            builder = tree.branch.get_commit_builder([])
 
64
            self.record_root(builder, tree)
 
65
            builder.finish_inventory()
 
66
            builder.abort()
 
67
        finally:
 
68
            tree.unlock()
 
69
 
59
70
    def test_commit_message(self):
60
71
        tree = self.make_branch_and_tree(".")
61
72
        tree.lock_write()