~ubuntu-branches/ubuntu/hardy/bzr/hardy-updates

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_urlutils.py

  • Committer: Bazaar Package Importer
  • Author(s): Etienne Goyer
  • Date: 2007-03-07 08:55:49 UTC
  • mto: This revision was merged to the branch mainline in revision 35.
  • Revision ID: james.westby@ubuntu.com-20070307085549-2y0nzag1hotluiah
Tags: upstream-0.15~rc1
ImportĀ upstreamĀ versionĀ 0.15~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import re
21
21
import sys
22
22
 
23
 
from bzrlib import osutils, urlutils
 
23
from bzrlib import osutils, urlutils, win32utils
24
24
import bzrlib
25
25
from bzrlib.errors import InvalidURL, InvalidURLJoin
26
26
from bzrlib.tests import TestCaseInTempDir, TestCase, TestSkipped
506
506
        self.assertEndsWith(url, '/mytest')
507
507
 
508
508
    def test_non_ascii(self):
 
509
        if win32utils.winver == 'Windows 98':
 
510
            raise TestSkipped('Windows 98 cannot handle unicode filenames')
 
511
 
509
512
        try:
510
513
            os.mkdir(u'dod\xe9')
511
514
        except UnicodeError: