Coverage for tests/test_tutorial/test_one/test_tutorial001_py310.py: 100%
13 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 1idefgh
3from sqlmodel import create_engine 1idefgh
5from ...conftest import get_testing_print_function, needs_py310 1idefgh
8@needs_py310 1idefgh
9def test_tutorial(clear_sqlmodel): 1defgh
10 from docs_src.tutorial.one import tutorial001_py310 as mod 1abc
12 mod.sqlite_url = "sqlite://" 1abc
13 mod.engine = create_engine(mod.sqlite_url) 1abc
14 calls = [] 1abc
16 new_print = get_testing_print_function(calls) 1abc
18 with patch("builtins.print", new=new_print): 1abc
19 mod.main() 1abc
20 assert calls == [ 1abc
21 [
22 "Hero:",
23 {
24 "name": "Tarantula",
25 "secret_name": "Natalia Roman-on",
26 "age": 32,
27 "id": 4,
28 },
29 ]
30 ]