mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-08 04:43:00 +08:00
14 lines
337 B
Python
14 lines
337 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=[])
|