/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/branch_implementations/test_branch.py

Merge up bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2006, 2007 Canonical Ltd
 
1
# Copyright (C) 2005, 2006, 2007, 2008 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
48
48
from bzrlib.transport.memory import MemoryServer
49
49
from bzrlib.upgrade import upgrade
50
50
from bzrlib.workingtree import WorkingTree
51
 
from bzrlib.symbol_versioning import (
52
 
    zero_ninetyone,
53
 
    )
54
51
 
55
52
 
56
53
class TestBranch(TestCaseWithBranch):
373
370
        text = tree.branch._format.get_format_description()
374
371
        self.failUnless(len(text))
375
372
 
376
 
    def test_check_branch_report_results(self):
377
 
        """Checking a branch produces results which can be printed"""
378
 
        branch = self.make_branch('.')
379
 
        result = branch.check()
380
 
        # reports results through logging
381
 
        result.report_results(verbose=True)
382
 
        result.report_results(verbose=False)
383
 
 
384
373
    def test_get_commit_builder(self):
385
374
        branch = self.make_branch(".")
386
375
        branch.lock_write()