Coverage for tests/test_tutorial/test_code_structure/test_tutorial001.py: 100%
14 statements
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 00:02 +0000
« prev ^ index » next coverage.py v7.6.1, created at 2024-09-09 00:02 +0000
1from unittest.mock import patch 1lghijk
3from sqlmodel import create_engine 1lghijk
5from ...conftest import get_testing_print_function 1lghijk
7expected_calls = [ 1ghijk
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): 1lghijk
26 from docs_src.tutorial.code_structure.tutorial001 import app, database 1abcdef
28 database.sqlite_url = "sqlite://" 1abcdef
29 database.engine = create_engine(database.sqlite_url) 1abcdef
30 app.engine = database.engine 1abcdef
31 calls = [] 1abcdef
33 new_print = get_testing_print_function(calls) 1abcdef
35 with patch("builtins.print", new=new_print): 1abcdef
36 app.main() 1abcdef
37 assert calls == expected_calls 1abcdef