Skip to content

Instantly share code, notes, and snippets.

View huaxlin's full-sized avatar
🎯
Focusing

huaxlin huaxlin

🎯
Focusing
View GitHub Profile
@huaxlin
huaxlin / mock-app-running.md
Last active June 15, 2023 03:42
Use `unittest.mock` to mock object when app running.

code structure:

$ tree .
.
├── mock_app_running.py
└── chatbot
   └── webhook.py
"""
$ python sqlalchemy-high-concurrency-issue.py
...
$ echo "select * from steal;" | mysql -uscott -ptiger test
user_id money
89b65422-36ed-48db-ba25-68c3b27eedcc 2
$
$ python -O sqlalchemy-high-concurrency-issue.py
...
"""