(self)
| 18 | assert issubclass(ClientException, PRAWException) |
| 19 | |
| 20 | def test_str(self): |
| 21 | assert str(ClientException()) == "" |
| 22 | assert str(ClientException("error message")) == "error message" |
| 23 | |
| 24 | |
| 25 | class TestDuplicateReplaceException: |
nothing calls this directly
no test coverage detected