(self)
| 31 | test_package_over_module = None |
| 32 | |
| 33 | def test_failure(self): |
| 34 | name = 'importlib' |
| 35 | assert name not in sys.builtin_module_names |
| 36 | spec = self.machinery.BuiltinImporter.find_spec(name) |
| 37 | self.assertIsNone(spec) |
| 38 | |
| 39 | |
| 40 | (Frozen_FindSpecTests, |
nothing calls this directly
no test coverage detected