mirror of
				https://github.com/fastapi/sqlmodel.git
				synced 2025-10-31 18:15:44 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			585 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			585 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.one import tutorial007 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 == [
 | |
|         [
 | |
|             "Hero:",
 | |
|             {"name": "Deadpond", "secret_name": "Dive Wilson", "age": None, "id": 1},
 | |
|         ]
 | |
|     ]
 | 
