/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/test_errors.py

  • Committer: Alexander Belchenko
  • Date: 2008-03-12 05:59:01 UTC
  • mfrom: (3266 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3267.
  • Revision ID: bialix@ukr.net-20080312055901-44umxb8uc3zs10fe
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
459
459
            "user encoding " + osutils.get_user_encoding(),
460
460
            str(err))
461
461
 
 
462
    def test_unknown_format(self):
 
463
        err = errors.UnknownFormatError('bar', kind='foo')
 
464
        self.assertEquals("Unknown foo format: 'bar'", str(err))
 
465
 
462
466
 
463
467
class PassThroughError(errors.BzrError):
464
468