mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-02-17 16:20:05 +08:00
12 lines
194 B
Python
12 lines
194 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
@pytest.mark.parametrize(
|
|
"nonebug_init",
|
|
[{"driver": "nonebot.drivers.fastapi"}],
|
|
indirect=True,
|
|
)
|
|
async def test_driver(nonebug_init):
|
|
...
|