9 lines
219 B
Python
9 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
|