(bot, chat_id)
| 46 | |
| 47 | @pytest.fixture(scope="module") |
| 48 | async def video_note(bot, chat_id): |
| 49 | with data_file("telegram2.mp4").open("rb") as f: |
| 50 | return (await bot.send_video_note(chat_id, video_note=f, read_timeout=50)).video_note |
| 51 | |
| 52 | |
| 53 | class VideoNoteTestBase: |
nothing calls this directly
no test coverage detected
searching dependent graphs…