1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 04:54:18 +00:00
pds-2021-g2-nest/code/backend/nest_backend/test/test_doa.py

11 lines
312 B
Python
Raw Normal View History

2021-05-07 17:46:14 +00:00
import pytest
from flask.testing import Client
# noinspection PyShadowingNames
2021-05-07 19:22:45 +00:00
def test_doa(flask_client: Client, access_token: str):
response = flask_client.get("/doa", headers={
"Authorization": f"Bearer {access_token}",
})
2021-05-07 17:46:14 +00:00
assert b"If you see this, the server is fine." in response.data