mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +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):
|
||
|
...
|