]> granicus.if.org Git - python/commitdiff
Move importlib.test.extension.test_finder over to importlib.test.finder_tests.
authorBrett Cannon <bcannon@gmail.com>
Tue, 27 Jan 2009 01:33:54 +0000 (01:33 +0000)
committerBrett Cannon <bcannon@gmail.com>
Tue, 27 Jan 2009 01:33:54 +0000 (01:33 +0000)
Lib/importlib/test/extension/test_finder.py

index 5766910a1b4370bab580bc32886cff4c2f98d2aa..1daa97ad0858d44222ea2381e468b3e5300bf7bc 100644 (file)
@@ -1,9 +1,10 @@
 import importlib
+from .. import finder_tests
 from . import test_path_hook
 
 import unittest
 
-class FinderTests(unittest.TestCase):
+class FinderTests(finder_tests.FinderTests):
 
     """Test the finder for extension modules."""
 
@@ -11,9 +12,25 @@ class FinderTests(unittest.TestCase):
         importer = importlib.ExtensionFileImporter(test_path_hook.PATH)
         return importer.find_module(fullname)
 
-    def test_success(self):
+    def test_module(self):
         self.assert_(self.find_module(test_path_hook.NAME))
 
+    def test_package(self):
+        # Extension modules cannot be an __init__ for a package.
+        pass
+
+    def test_module_in_package(self):
+        # No extension module in a package available for testing.
+        pass
+
+    def test_package_in_package(self):
+        # Extension modules cannot be an __init__ for a package.
+        pass
+
+    def test_package_over_module(self):
+        # Extension modules cannot be an __init__ for a package.
+        pass
+
     def test_failure(self):
         self.assert_(self.find_module('asdfjkl;') is None)