(bot, chat_id)
| 120 | |
| 121 | @pytest.fixture |
| 122 | async def one_time_message(bot, chat_id): |
| 123 | # mostly used in tests for edit_message and hence can't be reused |
| 124 | return await bot.send_message( |
| 125 | chat_id, "Text", disable_web_page_preview=True, disable_notification=True |
| 126 | ) |
| 127 | |
| 128 | |
| 129 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected
searching dependent graphs…