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

  • Committer: John Arbash Meinel
  • Date: 2006-04-27 17:13:19 UTC
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060427171319-2ca1ae1bbba4465a
Adding tests for the rest of the _win32 functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
739
739
    def assertFileEqual(self, content, path):
740
740
        """Fail if path does not contain 'content'."""
741
741
        self.failUnless(osutils.lexists(path))
 
742
        # TODO: jam 20060427 Shouldn't this be 'rb'?
742
743
        self.assertEqualDiff(content, open(path, 'r').read())
743
744
 
744
745