Coverage for tests / test_tutorial / test_connect / test_delete / test_tutorial001.py: 100%
15 statements
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-06 21:09 +0000
« prev ^ index » next coverage.py v7.13.0, created at 2026-01-06 21:09 +0000
1import importlib 1abcdefghi
2from types import ModuleType 1abcdefghi
4import pytest 1abcdefghi
5from sqlmodel import create_engine 1abcdefghi
7from ....conftest import PrintMock, needs_py310 1abcdefghi
9expected_calls = [ 1abcdefghi
10 [
11 "Created hero:",
12 {
13 "age": None,
14 "id": 1,
15 "secret_name": "Dive Wilson",
16 "team_id": 2,
17 "name": "Deadpond",
18 },
19 ],
20 [
21 "Created hero:",
22 {
23 "age": 48,
24 "id": 2,
25 "secret_name": "Tommy Sharp",
26 "team_id": 1,
27 "name": "Rusty-Man",
28 },
29 ],
30 [
31 "Created hero:",
32 {
33 "age": None,
34 "id": 3,
35 "secret_name": "Pedro Parqueador",
36 "team_id": None,
37 "name": "Spider-Boy",
38 },
39 ],
40 [
41 "Updated hero:",
42 {
43 "age": None,
44 "id": 3,
45 "secret_name": "Pedro Parqueador",
46 "team_id": 1,
47 "name": "Spider-Boy",
48 },
49 ],
50 [
51 "No longer Preventer:",
52 {
53 "age": None,
54 "id": 3,
55 "secret_name": "Pedro Parqueador",
56 "team_id": None,
57 "name": "Spider-Boy",
58 },
59 ],
60]
63@pytest.fixture( 1abcdefghi
64 name="module",
65 params=[
66 "tutorial001_py39",
67 pytest.param("tutorial001_py310", marks=needs_py310),
68 ],
69)
70def get_module(request: pytest.FixtureRequest) -> ModuleType: 1abcdefghi
71 module = importlib.import_module( 1abcdefghi
72 f"docs_src.tutorial.connect.delete.{request.param}"
73 )
74 module.sqlite_url = "sqlite://" 1abcdefghi
75 module.engine = create_engine(module.sqlite_url) 1abcdefghi
76 return module 1abcdefghi
79def test_tutorial(print_mock: PrintMock, module: ModuleType): 1abcdefghi
80 module.main() 1jklmnopqr
81 assert print_mock.calls == expected_calls 1jklmnopqr