COSCUP-ap-demo/tests/test_inbox.py

9 lines
219 B
Python
Raw Normal View History

2023-06-13 08:11:29 +02:00
#!/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