Coverage for tests/test_tutorial/test_code_structure/test_tutorial001.py: 100%
14 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 unittest.mock import patch 1nhijklm
3from sqlmodel import create_engine 1nhijklm
5from ...conftest import get_testing_print_function 1nhijklm
7expected_calls = [ 1hijklm
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]
25def test_tutorial(clear_sqlmodel): 1nhijklm
26 from docs_src.tutorial.code_structure.tutorial001 import app, database 1abcdefg
28 database.sqlite_url = "sqlite://" 1abcdefg
29 database.engine = create_engine(database.sqlite_url) 1abcdefg
30 app.engine = database.engine 1abcdefg
31 calls = [] 1abcdefg
33 new_print = get_testing_print_function(calls) 1abcdefg
35 with patch("builtins.print", new=new_print): 1abcdefg
36 app.main() 1abcdefg
37 assert calls == expected_calls 1abcdefg