mirror of
https://github.com/PaiGramTeam/sqlmodel.git
synced 2024-11-23 00:01:34 +00:00
31 lines
835 B
Python
31 lines
835 B
Python
from unittest.mock import patch
|
|
|
|
from sqlmodel import create_engine
|
|
|
|
from ...conftest import get_testing_print_function
|
|
|
|
|
|
def test_tutorial(clear_sqlmodel):
|
|
from docs_src.tutorial.where import tutorial009 as mod
|
|
|
|
mod.sqlite_url = "sqlite://"
|
|
mod.engine = create_engine(mod.sqlite_url)
|
|
calls = []
|
|
|
|
new_print = get_testing_print_function(calls)
|
|
|
|
with patch("builtins.print", new=new_print):
|
|
mod.main()
|
|
assert calls == [
|
|
[{"name": "Tarantula", "secret_name": "Natalia Roman-on", "age": 32, "id": 4}],
|
|
[{"name": "Black Lion", "secret_name": "Trevor Challa", "age": 35, "id": 5}],
|
|
[
|
|
{
|
|
"name": "Captain North America",
|
|
"secret_name": "Esteban Rogelios",
|
|
"age": 93,
|
|
"id": 7,
|
|
}
|
|
],
|
|
]
|