mirror of
https://github.com/suitenumerique/meet.git
synced 2026-08-21 15:47:09 +00:00
✅(summary) add minimal test suite for health endpoint
Based on cameldev's work, introduce basic tests to ensure the health endpoint responds correctly.
This commit is contained in:
committed by
aleb_the_flash
parent
bfbfade99a
commit
83bd9c5ce3
@@ -0,0 +1,12 @@
|
||||
"""Integration test configuration. Provides shared fixtures."""
|
||||
|
||||
import pytest
|
||||
from fastapi.testclient import TestClient
|
||||
|
||||
from summary.main import app
|
||||
|
||||
|
||||
@pytest.fixture()
|
||||
def client():
|
||||
"""Provide a FastAPI TestClient for integration tests."""
|
||||
return TestClient(app)
|
||||
Reference in New Issue
Block a user