(slave_channel)
| 53 | |
| 54 | |
| 55 | def test_verify_missing_uid(slave_channel): |
| 56 | with pytest.raises(AssertionError): |
| 57 | chat = PrivateChat( |
| 58 | channel=slave_channel, |
| 59 | name="Chat") |
| 60 | chat.verify() |
| 61 | |
| 62 | |
| 63 | def test_pickle(slave_channel): |
nothing calls this directly
no test coverage detected