~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_urlutils.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-07-03 13:56:48 UTC
  • mfrom: (1711.4.41 win32-accepted)
  • Revision ID: pqm@pqm.ubuntu.com-20060703135648-b927e5efb9f5b907
(jam) cleanup for win32, close open file handles, tests pass

Show diffs side-by-side

added added

removed removed

Lines of Context:
380
380
 
381
381
        test('http://foo', 'http://foo')
382
382
        if sys.platform == 'win32':
383
 
            test('c:/foo/path', 'file:///C|/foo/path')
384
 
            test('c:/foo/path', 'file:///C:/foo/path')
 
383
            test('C:/foo/path', 'file:///C|/foo/path')
 
384
            test('C:/foo/path', 'file:///C:/foo/path')
385
385
        else:
386
386
            test('/foo/path', 'file:///foo/path')
387
387