(self, *args)
| 327 | raise ZeroDivisionError("zorglub") |
| 328 | |
| 329 | def seek(self, *args): |
| 330 | raise ZeroDivisionError("zorglub") |
| 331 | |
| 332 | # ensure the Python exception is restored |
| 333 | with pytest.raises(ZeroDivisionError, match="zorglub"): |
no outgoing calls
no test coverage detected