(bot, chat_id)
| 47 | |
| 48 | @pytest.fixture(scope="module") |
| 49 | async def voice(bot, chat_id): |
| 50 | with data_file("telegram.ogg").open("rb") as f: |
| 51 | return (await bot.send_voice(chat_id, voice=f, read_timeout=50)).voice |
| 52 | |
| 53 | |
| 54 | class VoiceTestBase: |
nothing calls this directly
no test coverage detected
searching dependent graphs…