~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/branch_implementations/test_branch.py

  • Committer: John Arbash Meinel
  • Date: 2008-05-05 20:42:38 UTC
  • mfrom: (3406 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3407.
  • Revision ID: john@arbash-meinel.com-20080505204238-598hf62krc3wwcin
merge bzr.dev, resolve NEWS

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
373
373
        text = tree.branch._format.get_format_description()
374
374
        self.failUnless(len(text))
375
375
 
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
376
    def test_get_commit_builder(self):
385
377
        branch = self.make_branch(".")
386
378
        branch.lock_write()