Browse Source

Test refactoring: tests/test_tutorial/test_path_params/test_tutorial004.py

pull/13476/head
alv2017 4 weeks ago
parent
commit
e6aaddf837
  1. 8
      tests/test_tutorial/test_path_params/test_tutorial004.py

8
tests/test_tutorial/test_path_params/test_tutorial004.py

@ -7,21 +7,19 @@ client = TestClient(app)
def test_file_path():
response = client.get("/files/home/johndoe/myfile.txt")
print(response.content)
assert response.status_code == 200, response.text
assert response.status_code == 200
assert response.json() == {"file_path": "home/johndoe/myfile.txt"}
def test_root_file_path():
response = client.get("/files//home/johndoe/myfile.txt")
print(response.content)
assert response.status_code == 200, response.text
assert response.status_code == 200
assert response.json() == {"file_path": "/home/johndoe/myfile.txt"}
def test_openapi_schema():
response = client.get("/openapi.json")
assert response.status_code == 200, response.text
assert response.status_code == 200
assert response.json() == {
"openapi": "3.1.0",
"info": {"title": "FastAPI", "version": "0.1.0"},

Loading…
Cancel
Save