~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_diff.py

  • Committer: Gary van der Merwe
  • Date: 2009-12-01 11:08:28 UTC
  • mto: This revision was merged to the branch mainline in revision 4862.
  • Revision ID: garyvdm@gmail.com-20091201110828-o6yxb3kz82v0o6vu
When launching an external diff app, don't write temporary files for a working tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1378
1378
                                                     'newname')
1379
1379
        self.assertContainsRe(old_path, 'old/oldname$')
1380
1380
        self.assertEqual(0, os.stat(old_path).st_mtime)
1381
 
        self.assertContainsRe(new_path, 'new/newname$')
 
1381
        self.assertContainsRe(new_path, 'tree/newname$')
1382
1382
        self.assertFileEqual('oldcontent', old_path)
1383
1383
        self.assertFileEqual('newcontent', new_path)
1384
1384
        if osutils.host_os_dereferences_symlinks():