mirror of
https://github.com/rjNemo/fastapi
synced 2026-06-06 02:26:46 +00:00
* Update isort script to match changes in the new release, isort v5.0.2 * Downgrade isort to version v4.3.21 * Add an alternative flag to --recursive in isort v5.0.2 * Add isort config file * 🚚 Import from docs_src for tests * 🎨 Format dependencies.utils * 🎨 Remove isort combine_as_imports, keep black profile * 🔧 Update isort config, use pyproject.toml, Black profile * 🔧 Update format scripts to use explicit directories to format otherwise it would try to format venv env directories, I have several with different Python versions * 🎨 Format NoSQL tutorial after re-sorting imports * 🎨 Fix format for __init__.py Co-authored-by: Sebastián Ramírez <tiangolo@gmail.com>
17 lines
436 B
Python
17 lines
436 B
Python
from fastapi.testclient import TestClient
|
|
|
|
from docs_src.wsgi.tutorial001 import app
|
|
|
|
client = TestClient(app)
|
|
|
|
|
|
def test_flask():
|
|
response = client.get("/v1/")
|
|
assert response.status_code == 200, response.text
|
|
assert response.text == "Hello, World from Flask!"
|
|
|
|
|
|
def test_app():
|
|
response = client.get("/v2")
|
|
assert response.status_code == 200, response.text
|
|
assert response.json() == {"message": "Hello World"}
|