(self)
| 21 | check_found = None |
| 22 | |
| 23 | def test_failure(self): |
| 24 | # Test None returned upon not finding a suitable loader. |
| 25 | module = '<test module>' |
| 26 | with util.import_state(): |
| 27 | self.assertIsNone(self.find(module)) |
| 28 | |
| 29 | def test_sys_path(self): |
| 30 | # Test that sys.path is used when 'path' is None. |
nothing calls this directly
no test coverage detected