summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2009-01-27 01:33:54 (GMT)
committerBrett Cannon <bcannon@gmail.com>2009-01-27 01:33:54 (GMT)
commitc49715f6827772baf5242f4d33fef716faee497f (patch)
tree39b9598622ae71d8811e4199b8523be247493dbf /Lib
parenta2a8e8be8e806e940d731a826302193e94267991 (diff)
downloadcpython-c49715f6827772baf5242f4d33fef716faee497f.zip
cpython-c49715f6827772baf5242f4d33fef716faee497f.tar.gz
cpython-c49715f6827772baf5242f4d33fef716faee497f.tar.bz2
Move importlib.test.extension.test_finder over to importlib.test.finder_tests.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/importlib/test/extension/test_finder.py21
1 files changed, 19 insertions, 2 deletions
diff --git a/Lib/importlib/test/extension/test_finder.py b/Lib/importlib/test/extension/test_finder.py
index 5766910..1daa97a 100644
--- a/Lib/importlib/test/extension/test_finder.py
+++ b/Lib/importlib/test/extension/test_finder.py
@@ -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)