/
shapovalovav
/
AI-Agent
Обзор
Документация
Войти
/
shapovalovav
/
AI-Agent
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Python314/Lib/test/test_importlib/source/test_path_hook.py
32 строки
818 B
Anatoly1147
first_commit
11 июл 2026, 17:02
11 июл 2026, 17:02
f6c78bd
Код
Авторство
О чём код?
from test.test_importlib import util machinery = util.import_importlib('importlib.machinery') import unittest class PathHookTest: """Test the path hook for source.""" def path_hook(self): return self.machinery.FileFinder.path_hook((self.machinery.SourceFileLoader, self.machinery.SOURCE_SUFFIXES)) def test_success(self): with util.create_modules('dummy') as mapping: self.assertHasAttr(self.path_hook()(mapping['.root']), 'find_spec') def test_empty_string(self): # The empty string represents the cwd. self.assertHasAttr(self.path_hook()(''), 'find_spec') (Frozen_PathHookTest, Source_PathHooktest ) = util.test_both(PathHookTest, machinery=machinery) if __name__ == '__main__': unittest.main()