2009-03-12 22:47:53 +00:00
|
|
|
from importlib import _bootstrap
|
2009-02-01 04:00:05 +00:00
|
|
|
from . import util as source_util
|
2009-01-18 00:24:28 +00:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
|
|
|
|
class PathHookTest(unittest.TestCase):
|
|
|
|
|
|
|
|
"""Test the path hook for source."""
|
|
|
|
|
|
|
|
def test_success(self):
|
|
|
|
# XXX Only work on existing directories?
|
2009-02-01 04:00:05 +00:00
|
|
|
with source_util.create_modules('dummy') as mapping:
|
2009-03-12 22:47:53 +00:00
|
|
|
self.assert_(hasattr(_bootstrap._FileFinder(mapping['.root']),
|
2009-01-18 00:24:28 +00:00
|
|
|
'find_module'))
|
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
|
|
|
from test.support import run_unittest
|
|
|
|
run_unittest(PathHookTest)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
test_main()
|