~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_osutils.py

  • Committer: Martin Pool
  • Date: 2008-06-11 03:56:46 UTC
  • mfrom: (3452.1.1 bzr.dev.mlm)
  • mto: This revision was merged to the branch mainline in revision 3493.
  • Revision ID: mbp@sourcefrog.net-20080611035646-gcfmu3tzavlvxj3z
\#212289 avoid assuming Windows diff tools can understand symlinks

Show diffs side-by-side

added added

removed removed

Lines of Context:
322
322
        self.assertEqual("@", osutils.kind_marker("symlink"))
323
323
        self.assertRaises(errors.BzrError, osutils.kind_marker, "unknown")
324
324
 
 
325
    def test_host_os_dereferences_symlinks(self):
 
326
        osutils.host_os_dereferences_symlinks()
 
327
 
325
328
 
326
329
class TestPumpFile(TestCase):
327
330
    """Test pumpfile method."""