Coverage for tests/test_tutorial/test_select/test_tutorial003_py310_tutorial004_py310.py: 100%
26 statements
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-24 00:02 +0000
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-24 00:02 +0000
1from typing import Any, Dict, List, Union 1abcdef
2from unittest.mock import patch 1abcdef
4from sqlmodel import create_engine 1abcdef
6from ...conftest import get_testing_print_function, needs_py310 1abcdef
9def check_calls(calls: List[List[Union[str, Dict[str, Any]]]]): 1abcdef
10 assert calls[0][0] == [ 1ghijklmn
11 {
12 "name": "Deadpond",
13 "secret_name": "Dive Wilson",
14 "age": None,
15 "id": 1,
16 },
17 {
18 "name": "Spider-Boy",
19 "secret_name": "Pedro Parqueador",
20 "age": None,
21 "id": 2,
22 },
23 {
24 "name": "Rusty-Man",
25 "secret_name": "Tommy Sharp",
26 "age": 48,
27 "id": 3,
28 },
29 ]
32@needs_py310 1abcdef
33def test_tutorial_003(clear_sqlmodel): 1abcdef
34 from docs_src.tutorial.select import tutorial003_py310 as mod 1hjln
36 mod.sqlite_url = "sqlite://" 1hjln
37 mod.engine = create_engine(mod.sqlite_url) 1hjln
38 calls = [] 1hjln
40 new_print = get_testing_print_function(calls) 1hjln
42 with patch("builtins.print", new=new_print): 1hjln
43 mod.main() 1hjln
44 check_calls(calls) 1hjln
47@needs_py310 1abcdef
48def test_tutorial_002(clear_sqlmodel): 1abcdef
49 from docs_src.tutorial.select import tutorial004_py310 as mod 1gikm
51 mod.sqlite_url = "sqlite://" 1gikm
52 mod.engine = create_engine(mod.sqlite_url) 1gikm
53 calls = [] 1gikm
55 new_print = get_testing_print_function(calls) 1gikm
57 with patch("builtins.print", new=new_print): 1gikm
58 mod.main() 1gikm
59 check_calls(calls) 1gikm