2009-03-12 19:47:53 -03:00
|
|
|
from importlib import _bootstrap
|
2009-02-06 22:06:43 -04:00
|
|
|
from . import util
|
2009-01-17 20:24:28 -04:00
|
|
|
|
|
|
|
import collections
|
|
|
|
import imp
|
|
|
|
import sys
|
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class PathHookTests(unittest.TestCase):
|
|
|
|
|
|
|
|
"""Test the path hook for extension modules."""
|
|
|
|
# XXX Should it only succeed for pre-existing directories?
|
|
|
|
# XXX Should it only work for directories containing an extension module?
|
|
|
|
|
|
|
|
def hook(self, entry):
|
2009-03-12 19:47:53 -03:00
|
|
|
return _bootstrap._ExtensionFileFinder(entry)
|
2009-01-17 20:24:28 -04:00
|
|
|
|
|
|
|
def test_success(self):
|
|
|
|
# Path hook should handle a directory where a known extension module
|
|
|
|
# exists.
|
2009-06-30 20:06:06 -03:00
|
|
|
self.assertTrue(hasattr(self.hook(util.PATH), 'find_module'))
|
2009-01-17 20:24:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
|
|
|
from test.support import run_unittest
|
|
|
|
run_unittest(PathHookTests)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|