12 lines
238 B
Python
12 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
|