From 22dc7e913268c0b15cc76d69e57bca174d440ca7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Tue, 18 Dec 2018 22:57:09 +0400 Subject: [PATCH] :white_check_mark: Test for missing required body --- tests/test_tutorial/test_body/test_tutorial001.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/tests/test_tutorial/test_body/test_tutorial001.py b/tests/test_tutorial/test_body/test_tutorial001.py index f665eb0ba..7a07c0367 100644 --- a/tests/test_tutorial/test_body/test_tutorial001.py +++ b/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):