Browse Source

Test for missing required body

pull/11/head
Sebastián Ramírez 6 years ago
parent
commit
22dc7e9132
  1. 11
      tests/test_tutorial/test_body/test_tutorial001.py

11
tests/test_tutorial/test_body/test_tutorial001.py

@ -124,6 +124,16 @@ name_price_missing = {
]
}
body_missing = {
"detail": [
{
"loc": ["body", "item"],
"msg": "field required",
"type": "value_error.missing",
}
]
}
@pytest.mark.parametrize(
"path,body,expected_status,expected_response",
@ -155,6 +165,7 @@ name_price_missing = {
("/items/", {"name": "Foo"}, 422, price_missing),
("/items/", {"name": "Foo", "price": "twenty"}, 422, price_not_float),
("/items/", {}, 422, name_price_missing),
("/items/", None, 422, body_missing),
],
)
def test_post_body(path, body, expected_status, expected_response):

Loading…
Cancel
Save