(slave_channel)
| 8 | |
| 9 | |
| 10 | def test_generate_with_channel(slave_channel): |
| 11 | chat = PrivateChat(channel=slave_channel, uid="chat_id") |
| 12 | assert chat.module_id == slave_channel.channel_id |
| 13 | assert chat.module_name == slave_channel.channel_name |
| 14 | assert chat.channel_emoji == slave_channel.channel_emoji |
| 15 | |
| 16 | |
| 17 | def test_generate_with_middleware(middleware): |
nothing calls this directly
no test coverage detected