nonebot2/tests/test_plugins/test_permission.py

19 lines
540 B
Python
Raw Normal View History

2020-09-10 10:31:53 +00:00
from nonebot.rule import to_me
2020-12-17 13:09:30 +00:00
from nonebot.typing import T_State
2020-09-10 10:31:53 +00:00
from nonebot.plugin import on_startswith
2020-12-17 13:09:30 +00:00
from nonebot.permission import SUPERUSER
from nonebot.adapters.ding import Bot as DingBot
from nonebot.adapters.cqhttp import Bot as CQHTTPBot
2020-09-10 10:31:53 +00:00
2020-12-17 13:09:30 +00:00
test_command = on_startswith("hello", to_me(), permission=SUPERUSER)
2020-09-10 10:31:53 +00:00
@test_command.handle()
2021-06-15 16:58:47 +00:00
async def test_handler1(bot: CQHTTPBot):
2020-12-03 10:47:58 +00:00
await test_command.finish("cqhttp hello")
@test_command.handle()
2021-06-15 16:58:47 +00:00
async def test_handler2(bot: DingBot):
2020-12-03 10:47:58 +00:00
await test_command.finish("ding hello")