0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 17:47:13 +01:00
cpython/Lib/importlib/test/finder_tests.py
Brett Cannon 23cbd8a656 Add initial implementation of importlib. See the NOTES files for what is
planned for the package.

There are no docs yet, but they are coming once the API for the first new
function, importlib.import_module() is finalized.
2009-01-18 00:24:28 +00:00

40 lines
1.1 KiB
Python

# top-level.
# Package.
# module in pacakge.
# Package within a package.
# At least one tests with 'path'.
# Module that is not handled.
import unittest
class FinderTests(unittest.TestCase):
"""Basic tests for a finder to pass."""
def test_module(self):
# Test importing a top-level module.
raise NotImplementedError
def test_package(self):
# Test importing a package.
raise NotImplementedError
def test_module_in_package(self):
# Test importing a module contained within a package.
# A value for 'path' should be used if for a meta_path finder.
raise NotImplementedError
def test_package_in_package(self):
# Test importing a subpackage.
# A value for 'path' should be used if for a meta_path finder.
raise NotImplementedError
def test_package_over_module(self):
# Test that packages are chosen over modules.
raise NotImplementedError
def test_failure(self):
# Test trying to find a module that cannot be handled.
raise NotImplementedError