~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_urlutils.py

  • Committer: Martin
  • Date: 2010-06-22 00:32:37 UTC
  • mto: This revision was merged to the branch mainline in revision 5315.
  • Revision ID: gzlist@googlemail.com-20100622003237-zntnpyx8hjb5jnpw
Change interface of _command_line_to_argv so old tests can still be used with new stripping logic

Show diffs side-by-side

added added

removed removed

Lines of Context:
419
419
            from_url('file:///d:/path/to/r%c3%a4ksm%c3%b6rg%c3%a5s'))
420
420
        self.assertEqual('/', from_url('file:///'))
421
421
 
422
 
        self.assertRaises(InvalidURL, from_url, 'file:///C:')
423
 
        self.assertRaises(InvalidURL, from_url, 'file:///c')
424
422
        self.assertRaises(InvalidURL, from_url, '/path/to/foo')
425
423
        # Not a valid _win32 url, no drive letter
426
424
        self.assertRaises(InvalidURL, from_url, 'file:///path/to/foo')