Sebastián Ramírez
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with
6 additions and
6 deletions
-
docs_src/dependencies/tutorial008b.py
-
docs_src/dependencies/tutorial008b_an.py
-
docs_src/dependencies/tutorial008b_an_py39.py
-
tests/test_tutorial/test_dependencies/test_tutorial008b.py
-
tests/test_tutorial/test_dependencies/test_tutorial008b_an.py
-
tests/test_tutorial/test_dependencies/test_tutorial008b_an_py39.py
|
|
@ -17,7 +17,7 @@ def get_username(): |
|
|
|
try: |
|
|
|
yield "Rick" |
|
|
|
except OwnerError as e: |
|
|
|
raise HTTPException(status_code=400, detail=f"Onwer error: {e}") |
|
|
|
raise HTTPException(status_code=400, detail=f"Owner error: {e}") |
|
|
|
|
|
|
|
|
|
|
|
@app.get("/items/{item_id}") |
|
|
|
|
|
@ -18,7 +18,7 @@ def get_username(): |
|
|
|
try: |
|
|
|
yield "Rick" |
|
|
|
except OwnerError as e: |
|
|
|
raise HTTPException(status_code=400, detail=f"Onwer error: {e}") |
|
|
|
raise HTTPException(status_code=400, detail=f"Owner error: {e}") |
|
|
|
|
|
|
|
|
|
|
|
@app.get("/items/{item_id}") |
|
|
|
|
|
@ -19,7 +19,7 @@ def get_username(): |
|
|
|
try: |
|
|
|
yield "Rick" |
|
|
|
except OwnerError as e: |
|
|
|
raise HTTPException(status_code=400, detail=f"Onwer error: {e}") |
|
|
|
raise HTTPException(status_code=400, detail=f"Owner error: {e}") |
|
|
|
|
|
|
|
|
|
|
|
@app.get("/items/{item_id}") |
|
|
|
|
|
@ -14,7 +14,7 @@ def test_get_no_item(): |
|
|
|
def test_owner_error(): |
|
|
|
response = client.get("/items/plumbus") |
|
|
|
assert response.status_code == 400, response.text |
|
|
|
assert response.json() == {"detail": "Onwer error: Rick"} |
|
|
|
assert response.json() == {"detail": "Owner error: Rick"} |
|
|
|
|
|
|
|
|
|
|
|
def test_get_item(): |
|
|
|
|
|
@ -14,7 +14,7 @@ def test_get_no_item(): |
|
|
|
def test_owner_error(): |
|
|
|
response = client.get("/items/plumbus") |
|
|
|
assert response.status_code == 400, response.text |
|
|
|
assert response.json() == {"detail": "Onwer error: Rick"} |
|
|
|
assert response.json() == {"detail": "Owner error: Rick"} |
|
|
|
|
|
|
|
|
|
|
|
def test_get_item(): |
|
|
|
|
|
@ -14,7 +14,7 @@ def test_get_no_item(): |
|
|
|
def test_owner_error(): |
|
|
|
response = client.get("/items/plumbus") |
|
|
|
assert response.status_code == 400, response.text |
|
|
|
assert response.json() == {"detail": "Onwer error: Rick"} |
|
|
|
assert response.json() == {"detail": "Owner error: Rick"} |
|
|
|
|
|
|
|
|
|
|
|
def test_get_item(): |
|
|
|