mirror of
https://github.com/fastapi/sqlmodel.git
synced 2026-02-03 19:19:49 +08:00
Co-authored-by: Yurii Motov <yurii.motov.monte@gmail.com> Co-authored-by: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com>
37 lines
930 B
Python
37 lines
930 B
Python
import importlib
|
|
from types import ModuleType
|
|
|
|
import pytest
|
|
from sqlmodel import create_engine
|
|
|
|
from ...conftest import PrintMock, needs_py310
|
|
|
|
|
|
@pytest.fixture(
|
|
name="mod",
|
|
params=[
|
|
pytest.param("tutorial002_py39"),
|
|
pytest.param("tutorial002_py310", marks=needs_py310),
|
|
],
|
|
)
|
|
def get_module(request: pytest.FixtureRequest) -> ModuleType:
|
|
mod = importlib.import_module(f"docs_src.tutorial.where.{request.param}")
|
|
mod.sqlite_url = "sqlite://"
|
|
mod.engine = create_engine(mod.sqlite_url)
|
|
return mod
|
|
|
|
|
|
def test_tutorial(print_mock: PrintMock, mod: ModuleType):
|
|
mod.main()
|
|
assert print_mock.calls == [
|
|
[
|
|
{
|
|
"name": "Spider-Boy",
|
|
"secret_name": "Pedro Parqueador",
|
|
"age": None,
|
|
"id": 2,
|
|
}
|
|
],
|
|
[{"name": "Rusty-Man", "secret_name": "Tommy Sharp", "age": 48, "id": 3}],
|
|
]
|