mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-09-06 20:16:47 +00:00
plugin load
This commit is contained in:
17
tests/bot.py
Normal file
17
tests/bot.py
Normal file
@ -0,0 +1,17 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.insert(0, os.path.abspath(os.path.dirname(os.path.dirname(__file__))))
|
||||
|
||||
import nonebot
|
||||
from nonebot.matcher import matchers
|
||||
|
||||
if __name__ == "__main__":
|
||||
nonebot.load_plugins(os.path.join(os.path.dirname(__file__),
|
||||
"test_plugins"))
|
||||
print(nonebot.get_loaded_plugins())
|
||||
print(matchers)
|
||||
print(matchers[1][0].handlers)
|
13
tests/test_plugins/test_matcher.py
Normal file
13
tests/test_plugins/test_matcher.py
Normal file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
from nonebot.rule import Rule
|
||||
from nonebot.event import Event
|
||||
from nonebot.plugin import on_message
|
||||
|
||||
test_matcher = on_message(Rule(), state={"default": 1})
|
||||
|
||||
|
||||
@test_matcher.handle()
|
||||
async def test_handler(bot, event: Event, state: dict):
|
||||
print(state)
|
Reference in New Issue
Block a user