feat(): openapi docs for resume

This commit is contained in:
gitgernit
2025-11-21 22:25:36 +03:00
parent 44b10a1a03
commit 8fb00d5293
3 changed files with 83 additions and 19 deletions
+1 -3
View File
@@ -28,9 +28,7 @@ async def test_email_sign_up_creates_user(
password=DEFAULT_PASSWORD,
)
assert is_success_response(response)
assert response.json() == IsPartialDict(
access_token=IsStr()
)
assert response.json() == IsPartialDict(access_token=IsStr())
@inject
+3 -5
View File
@@ -12,8 +12,6 @@ async def test_healthcheck(
) -> None:
response = await http_client.get("/healthcheck")
assert is_success_response(response)
assert response.json() == IsDict(
{
"ok": True,
}
)
assert response.json() == IsDict({
"ok": True,
})