Coverage for tests/test_tutorial/test_select/test_tutorial003_tutorial004.py: 100%
24 statements
« prev ^ index » next coverage.py v7.6.12, created at 2025-03-07 05:42 +0000
« prev ^ index » next coverage.py v7.6.12, created at 2025-03-07 05:42 +0000
1from typing import Any, Dict, List, Union 1opqrstu
2from unittest.mock import patch 1opqrstu
4from sqlmodel import create_engine 1opqrstu
6from ...conftest import get_testing_print_function 1opqrstu
9def check_calls(calls: List[List[Union[str, Dict[str, Any]]]]): 1opqrstu
10 assert calls[0][0] == [ 1abcdefghijklmn
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 ]
32def test_tutorial_003(clear_sqlmodel): 1opqrstu
33 from docs_src.tutorial.select import tutorial003 as mod 1bdfhjln
35 mod.sqlite_url = "sqlite://" 1bdfhjln
36 mod.engine = create_engine(mod.sqlite_url) 1bdfhjln
37 calls = [] 1bdfhjln
39 new_print = get_testing_print_function(calls) 1bdfhjln
41 with patch("builtins.print", new=new_print): 1bdfhjln
42 mod.main() 1bdfhjln
43 check_calls(calls) 1bdfhjln
46def test_tutorial_002(clear_sqlmodel): 1opqrstu
47 from docs_src.tutorial.select import tutorial004 as mod 1acegikm
49 mod.sqlite_url = "sqlite://" 1acegikm
50 mod.engine = create_engine(mod.sqlite_url) 1acegikm
51 calls = [] 1acegikm
53 new_print = get_testing_print_function(calls) 1acegikm
55 with patch("builtins.print", new=new_print): 1acegikm
56 mod.main() 1acegikm
57 check_calls(calls) 1acegikm