(self)
| 23 | assert not c.connected |
| 24 | |
| 25 | def test_eq(self): |
| 26 | c = tclient_conn() |
| 27 | c2 = c.copy() |
| 28 | assert c == c |
| 29 | assert c != c2 |
| 30 | assert c != 42 |
| 31 | assert hash(c) != hash(c2) |
| 32 | |
| 33 | c2.id = c.id |
| 34 | assert c == c2 |
| 35 | |
| 36 | |
| 37 | class TestClient: |
nothing calls this directly
no test coverage detected