(self)
| 269 | def test_invalid_repr(): |
| 270 | class MyRepr: |
| 271 | def __repr__(self): |
| 272 | raise AttributeError("Example error") |
| 273 | |
| 274 | with pytest.raises(TypeError): |
| 275 | m.simple_bool_passthrough(MyRepr()) |
nothing calls this directly
no outgoing calls
no test coverage detected