(self)
| 27 | class AlwaysErrorProxy(LazyProxy[Any]): |
| 28 | @override |
| 29 | def __load__(self) -> Any: |
| 30 | raise RuntimeError("Mocking missing dependency") |
| 31 | |
| 32 | proxy = AlwaysErrorProxy() |
| 33 | assert not isinstance(proxy, dict) |
nothing calls this directly
no outgoing calls
no test coverage detected