mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-05 11:26:43 +08:00
17 lines
317 B
Python
17 lines
317 B
Python
import pytest
|
|
|
|
|
|
def test_add(n_plugin_module):
|
|
from nonebot_bison.config import Config
|
|
|
|
config = Config()
|
|
config.add_subscribe(
|
|
user="123",
|
|
user_type="group",
|
|
target="weibo_id",
|
|
target_name="weibo_name",
|
|
target_type="weibo",
|
|
cats=[],
|
|
tags=[],
|
|
)
|