mirror of
https://github.com/fastapi/sqlmodel.git
synced 2026-02-04 11:44:01 +08:00
Co-authored-by: Yurii Motov <yurii.motov.monte@gmail.com> Co-authored-by: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com>
53 lines
1.1 KiB
Python
53 lines
1.1 KiB
Python
import importlib
|
|
from decimal import Decimal
|
|
from types import ModuleType
|
|
|
|
import pytest
|
|
from sqlmodel import create_engine
|
|
|
|
from ...conftest import PrintMock, needs_py310
|
|
|
|
|
|
@pytest.fixture(
|
|
name="mod",
|
|
params=[
|
|
pytest.param("tutorial001_py39"),
|
|
pytest.param("tutorial001_py310", marks=needs_py310),
|
|
],
|
|
)
|
|
def get_module(request: pytest.FixtureRequest) -> ModuleType:
|
|
mod = importlib.import_module(f"docs_src.advanced.decimal.{request.param}")
|
|
mod.sqlite_url = "sqlite://"
|
|
mod.engine = create_engine(mod.sqlite_url)
|
|
return mod
|
|
|
|
|
|
expected_calls = [
|
|
[
|
|
"Hero 1:",
|
|
{
|
|
"name": "Deadpond",
|
|
"age": None,
|
|
"id": 1,
|
|
"secret_name": "Dive Wilson",
|
|
"money": Decimal("1.100"),
|
|
},
|
|
],
|
|
[
|
|
"Hero 2:",
|
|
{
|
|
"name": "Rusty-Man",
|
|
"age": 48,
|
|
"id": 3,
|
|
"secret_name": "Tommy Sharp",
|
|
"money": Decimal("2.200"),
|
|
},
|
|
],
|
|
["Total money: 3.300"],
|
|
]
|
|
|
|
|
|
def test_tutorial(print_mock: PrintMock, mod: ModuleType):
|
|
mod.main()
|
|
assert print_mock.calls == expected_calls
|