mirror of https://github.com/tiangolo/fastapi.git
25 lines
574 B
Python
25 lines
574 B
Python
import importlib
|
|
|
|
import pytest
|
|
from fastapi.testclient import TestClient
|
|
|
|
|
|
@pytest.fixture(
|
|
name="client",
|
|
params=[
|
|
pytest.param("tutorial008e_py39"),
|
|
pytest.param("tutorial008e_an_py39"),
|
|
],
|
|
)
|
|
def get_client(request: pytest.FixtureRequest):
|
|
mod = importlib.import_module(f"docs_src.dependencies.{request.param}")
|
|
|
|
client = TestClient(mod.app)
|
|
return client
|
|
|
|
|
|
def test_get_users_me(client: TestClient):
|
|
response = client.get("/users/me")
|
|
assert response.status_code == 200, response.text
|
|
assert response.json() == "Rick"
|