(slave_channel)
| 21 | |
| 22 | |
| 23 | def test_copy(slave_channel): |
| 24 | chat = PrivateChat( |
| 25 | channel=slave_channel, |
| 26 | uid="00001", |
| 27 | name="Chat", |
| 28 | alias="chaT" |
| 29 | ) |
| 30 | copy = chat.copy() |
| 31 | assert chat == copy |
| 32 | assert chat is not copy |
| 33 | |
| 34 | |
| 35 | def test_verify_valid_chat(slave_channel): |
nothing calls this directly
no test coverage detected