]> granicus.if.org Git - python/commitdiff
Removed non ASCII text from test as requested by Guido. Sorry :/
authorChristian Heimes <christian@cheimes.de>
Thu, 1 Nov 2007 20:11:06 +0000 (20:11 +0000)
committerChristian Heimes <christian@cheimes.de>
Thu, 1 Nov 2007 20:11:06 +0000 (20:11 +0000)
Lib/test/test_import.py

index 71f59767306c77a0cfc1c352888b7d97ad2fc3c4..9c44b878f0c20372d39132315df2b5a544609d06 100644 (file)
@@ -223,8 +223,7 @@ class ImportTest(unittest.TestCase):
             warnings.simplefilter('error', ImportWarning)
             self.assertRaises(ImportWarning, __import__, "site-packages")
 
-class UnicodePathsTests(unittest.TestCase):
-    SAMPLES = ('test', 'testäöüß', 'testéè', 'test°³²')
+class PathsTests(unittest.TestCase):
     path = TESTFN
 
     def setUp(self):
@@ -235,23 +234,6 @@ class UnicodePathsTests(unittest.TestCase):
         shutil.rmtree(self.path)
         sys.path = self.syspath
 
-    def test_sys_path(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 >>sys.stderr, path
-                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')
@@ -263,7 +245,7 @@ class UnicodePathsTests(unittest.TestCase):
         unload("test_trailing_slash")
 
 def test_main(verbose=None):
-    run_unittest(ImportTest, UnicodePathsTests)
+    run_unittest(ImportTest, PathsTests)
 
 if __name__ == '__main__':
     test_main()