fastapi/tests/test_tutorial/test_testing/test_tutorial002.py
Sebastián Ramírez 600f15faa0
✔ Improve support for tests in editor (#1699)
* ♻️ Remove required extra steps to test in editor

* 🎨 Format lint script

* 📝 Remove obsolete extra steps required to test in editor from docs

* 🐛 Fix coverage
2020-07-10 11:08:19 +02:00

9 lines
154 B
Python

from docs_src.app_testing.tutorial002 import test_read_main, test_websocket
def test_main():
test_read_main()
def test_ws():
test_websocket()