更新gitignore

This commit is contained in:
Azide 2022-03-14 22:31:22 +08:00
parent 574e491628
commit 08387943ba
2 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View File

@ -22,6 +22,7 @@
__pycache__/
*.py[cod]
*$py.class
venv_test/
# C extensions
*.so

View File

@ -1,7 +1,10 @@
import imp
from nonebug import App
from .utils import fake_admin_user, fake_private_message_event, fake_group_message_event, fake_superuser
from .conftest import app
import pytest
@pytest.mark.asyncio
@ -63,5 +66,5 @@ async def test_query_with_superuser_group_tome(app: App):
ctx.should_pass_rule()
ctx.should_pass_permission()
ctx.should_call_send(
event, '', True
event, Message("该功能只支持私聊使用请私聊Bot"), True
)