11 lines
238 B
Python
11 lines
238 B
Python
from fastapi.testclient import TestClient
|
|
|
|
from oidc_test.main import app
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_bootstrap():
|
|
with TestClient(app) as client:
|
|
response = client.get("/")
|
|
assert response.status_code == 200
|