Coverage for tests/test_tutorial/test_code_structure/test_tutorial002_py310.py: 100%
15 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-27 00:03 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-10-27 00:03 +0000
1from unittest.mock import patch 1ijklmnopqr
3from sqlmodel import create_engine 1ijklmnopqr
5from ...conftest import get_testing_print_function, needs_py310 1ijklmnopqr
7expected_calls = [ 1ijklmnopqr
8 [
9 "Created hero:",
10 {
11 "id": 1,
12 "name": "Deadpond",
13 "age": None,
14 "secret_name": "Dive Wilson",
15 "team_id": 1,
16 },
17 ],
18 [
19 "Hero's team:",
20 {"name": "Z-Force", "headquarters": "Sister Margaret's Bar", "id": 1},
21 ],
22]
25@needs_py310 1ijklmnopqr
26def test_tutorial(): 1ijklmnopqr
27 from docs_src.tutorial.code_structure.tutorial002_py310 import app, database 1abcdefgh
29 database.sqlite_url = "sqlite://" 1abcdefgh
30 database.engine = create_engine(database.sqlite_url) 1abcdefgh
31 app.engine = database.engine 1abcdefgh
32 calls = [] 1abcdefgh
34 new_print = get_testing_print_function(calls) 1abcdefgh
36 with patch("builtins.print", new=new_print): 1abcdefgh
37 app.main() 1abcdefgh
38 assert calls == expected_calls 1abcdefgh