(self, *args, **kwargs)
| 2295 | def test__deepcopy__catches_failure(self): |
| 2296 | class MyObj: |
| 2297 | def __deepcopy__(self, *args, **kwargs): |
| 2298 | raise RuntimeError |
| 2299 | |
| 2300 | arr = np.array([1, MyObj(), 3], dtype='O') |
| 2301 | with pytest.raises(RuntimeError): |
no outgoing calls
no test coverage detected