11 lines
310 B
Python
11 lines
310 B
Python
|
from fastapi.testclient import TestClient
|
||
|
|
||
|
from src.neo_neo_todo.main import app
|
||
|
|
||
|
|
||
|
async def test_get_current_member():
|
||
|
with TestClient(app) as client:
|
||
|
response = client.get("/members/me")
|
||
|
assert response.status_code == 401
|
||
|
assert response.json() == {"detail": "Not authenticated"}
|