()
| 1549 | entry_points = (DummyEntryPoint(),) |
| 1550 | |
| 1551 | def distributions(): |
| 1552 | return (Distribution(),) |
| 1553 | |
| 1554 | monkeypatch.setattr(importlib.metadata, "distributions", distributions) |
| 1555 | with pytest.raises(ImportError): |
nothing calls this directly
no test coverage detected