/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: Robert Collins
  • Date: 2006-03-03 02:09:49 UTC
  • mto: (1594.2.4 integration)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: robertc@robertcollins.net-20060303020949-0ddc6f33d0a43943
Smoke test for RevisionStore factories creating revision stores.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
                             "format 0.0.4 is already at the most "
37
37
                             "recent format.",
38
38
                             str(error))
39
 
 
40
 
    def test_corrupt_repository(self):
41
 
        repo = self.make_repository('.')
42
 
        error = errors.CorruptRepository(repo)
43
 
        self.assertEqualDiff("An error has been detected in the repository %s.\n"
44
 
                             "Please run bzr reconcile on this repository." %
45
 
                             repo.bzrdir.root_transport.base,
46
 
                             str(error))