(bot, chat_id)
| 128 | |
| 129 | @pytest.fixture(scope="module") |
| 130 | async def static_message(bot, chat_id): |
| 131 | # must not be edited to keep tests independent! We only use bot.send_message so that |
| 132 | # we have a valid message_id to e.g. reply to |
| 133 | return await bot.send_message( |
| 134 | chat_id, "Text", disable_web_page_preview=True, disable_notification=True |
| 135 | ) |
| 136 | |
| 137 | |
| 138 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…