~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_errors.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-07-13 04:12:12 UTC
  • mfrom: (2484.1.25 knit_index_pyrex)
  • Revision ID: pqm@pqm.ubuntu.com-20070713041212-ar46c24wgu0jhtm5
(John Arbash Meinel) Implement _KnitIndex._load_data in pyrex.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
            'It supports versions "(4, 5, 6)" to "(7, 8, 9)".',
54
54
            str(error))
55
55
 
56
 
    def test_in_process_transport(self):
57
 
        error = errors.InProcessTransport('fpp')
58
 
        self.assertEqualDiff(
59
 
            "The transport 'fpp' is only accessible within this process.",
60
 
            str(error))
61
 
 
62
56
    def test_inventory_modified(self):
63
57
        error = errors.InventoryModified("a tree to be repred")
64
58
        self.assertEqualDiff("The current inventory for the tree 'a tree to "