mirror of
https://github.com/nonebot/nonebot2.git
synced 2024-11-24 00:55:07 +08:00
✏️ fix doc typo
This commit is contained in:
parent
bc00c1be82
commit
bde256608b
@ -142,4 +142,3 @@ Rule(async_checker1) & sync_checker & async_checker2
|
||||
:::danger 警告
|
||||
`Rule(*checkers)` 只接受 async function,或使用 `nonebot.utils.run_sync` 自行包裹 sync function。在使用 `与 &` 时,NoneBot 会自动包裹 sync function
|
||||
:::
|
||||
t
|
31
tests/test_plugins/test_delete.py
Normal file
31
tests/test_plugins/test_delete.py
Normal file
@ -0,0 +1,31 @@
|
||||
import asyncio
|
||||
|
||||
from nonebot import on_message
|
||||
from nonebot.permission import USER
|
||||
from nonebot.typing import Bot, Event
|
||||
|
||||
a = on_message(priority=0, permission=USER(123123123), temp=True)
|
||||
|
||||
|
||||
@a.handle()
|
||||
async def test_a(bot: Bot, event: Event, state: dict):
|
||||
print("======== A Received ========")
|
||||
print("======== A Running Completed ========")
|
||||
|
||||
|
||||
b = on_message(priority=0, permission=USER(123456789), temp=True)
|
||||
|
||||
|
||||
@b.handle()
|
||||
async def test_b(bot: Bot, event: Event, state: dict):
|
||||
print("======== B Received ========")
|
||||
await asyncio.sleep(10)
|
||||
print("======== B Running Completed ========")
|
||||
|
||||
|
||||
c = on_message(priority=0, permission=USER(1111111111))
|
||||
|
||||
|
||||
@c.handle()
|
||||
async def test_c(bot: Bot, event: Event, state: dict):
|
||||
print("======== C Received ========")
|
Loading…
Reference in New Issue
Block a user