~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

Merged transaction tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
276
276
            raise AssertionError("value(s) %r not present in container %r" % 
277
277
                                 (missing, superlist))
278
278
 
 
279
    def assertIs(self, left, right):
 
280
        if not (left is right):
 
281
            raise AssertionError("%r is not %r." % (left, right))
 
282
 
279
283
    def _startLogFile(self):
280
284
        """Send bzr and test log messages to a temporary file.
281
285