Skip to content

Instantly share code, notes, and snippets.

@MwinyiMoha
Created February 10, 2021 19:45
Show Gist options
  • Save MwinyiMoha/ede38a248dc2957e06fdcc8fd4400010 to your computer and use it in GitHub Desktop.
Save MwinyiMoha/ede38a248dc2957e06fdcc8fd4400010 to your computer and use it in GitHub Desktop.
from fastapi.testclient import TestClient
from app.main import app
client = TestClient(app)
def test_root():
response = client.get('/')
data = response.json()
assert response.status_code == 200
assert data['service'] == 'Hello World'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment