(bot)
| 30 | |
| 31 | @pytest.fixture(scope="module") |
| 32 | def inline_query(bot): |
| 33 | ilq = InlineQuery( |
| 34 | InlineQueryTestBase.id_, |
| 35 | InlineQueryTestBase.from_user, |
| 36 | InlineQueryTestBase.query, |
| 37 | InlineQueryTestBase.offset, |
| 38 | location=InlineQueryTestBase.location, |
| 39 | ) |
| 40 | ilq.set_bot(bot) |
| 41 | return ilq |
| 42 | |
| 43 | |
| 44 | class InlineQueryTestBase: |
nothing calls this directly
no test coverage detected
searching dependent graphs…