~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-10 17:52:08 UTC
  • mfrom: (5021 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5023.
  • Revision ID: john@arbash-meinel.com-20100210175208-bubuwav4uqigu291
Merge bzr.dev 5021 to resolve NEWS

Show diffs side-by-side

added added

removed removed

Lines of Context:
485
485
        return self._shortened_test_description(test)
486
486
 
487
487
    def report_error(self, test, err):
488
 
        ui.ui_factory.note('ERROR: %s\n    %s\n' % (
 
488
        self.ui.note('ERROR: %s\n    %s\n' % (
489
489
            self._test_description(test),
490
490
            err[1],
491
491
            ))
492
492
 
493
493
    def report_failure(self, test, err):
494
 
        ui.ui_factory.note('FAIL: %s\n    %s\n' % (
 
494
        self.ui.note('FAIL: %s\n    %s\n' % (
495
495
            self._test_description(test),
496
496
            err[1],
497
497
            ))
702
702
    """
703
703
 
704
704
 
705
 
class CommandFailed(Exception):
706
 
    pass
707
 
 
708
 
 
709
705
class StringIOWrapper(object):
710
706
    """A wrapper around cStringIO which just adds an encoding attribute.
711
707
 
3562
3558
# appear prefixed ('bzrlib.' is "replaced" by 'bzrlib.').
3563
3559
test_prefix_alias_registry.register('bzrlib', 'bzrlib')
3564
3560
 
3565
 
# Obvious higest levels prefixes, feel free to add your own via a plugin
 
3561
# Obvious highest levels prefixes, feel free to add your own via a plugin
3566
3562
test_prefix_alias_registry.register('bd', 'bzrlib.doc')
3567
3563
test_prefix_alias_registry.register('bu', 'bzrlib.utils')
3568
3564
test_prefix_alias_registry.register('bt', 'bzrlib.tests')