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