(entry)
| 390 | def mock_path_hook(*entries, importer): |
| 391 | """A mock sys.path_hooks entry.""" |
| 392 | def hook(entry): |
| 393 | if entry not in entries: |
| 394 | raise ImportError |
| 395 | return importer |
| 396 | return hook |
| 397 | |
| 398 |
no outgoing calls
no test coverage detected