COSCUP-ap-demo/tests/test_inbox.py
SouthFox e006e448ed
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
[feat] process inbox request
2023-06-13 14:11:29 +08:00

8 lines
219 B
Python

#!/usr/bin/env python3
"""Test inbox route."""
def test_inbox(client):
"""Test inbox"""
response = client.post("/inbox",
data={"name": "Test"})
assert response.status_code == 401