| 25 | |
| 26 | def test_isinstance_does_not_error() -> None: |
| 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) |
no outgoing calls