init commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from app.api.utils.routers import utils_router
|
||||
|
||||
client = TestClient(utils_router)
|
||||
|
||||
|
||||
def test_read_main():
|
||||
response = client.get('/health-check')
|
||||
assert response.status_code == 200
|
||||
assert response.json() == {'msg': 'healthy'}
|
||||
Reference in New Issue
Block a user