Removed test from test_import. It will never work on all systems, see #1377

This commit is contained in:
Christian Heimes 2007-12-20 13:16:07 +00:00
parent 90aa7646af
commit a30be3031f
1 changed files with 0 additions and 17 deletions

View File

@ -173,23 +173,6 @@ class PathsTests(unittest.TestCase):
shutil.rmtree(self.path)
sys.path = self.syspath
def XXX_test_sys_path_with_unicode(self):
for i, subpath in enumerate(self.SAMPLES):
path = os.path.join(self.path, subpath)
os.mkdir(path)
self.failUnless(os.path.exists(path), os.listdir(self.path))
f = open(os.path.join(path, 'testimport%i.py' % i), 'w')
f.write("testdata = 'unicode path %i'\n" % i)
f.close()
sys.path.append(path)
try:
mod = __import__("testimport%i" % i)
except ImportError:
print(path, file=sys.stderr)
raise
self.assertEqual(mod.testdata, 'unicode path %i' % i)
unload("testimport%i" % i)
# http://bugs.python.org/issue1293
def test_trailing_slash(self):
f = open(os.path.join(self.path, 'test_trailing_slash.py'), 'w')