From 4d98bdf5f6fb555c13432fbae4d58ce539854487 Mon Sep 17 00:00:00 2001 From: Roberto Hueso Gómez Date: Wed, 13 Nov 2019 13:40:18 +0100 Subject: #915 Test malformed payload for POST /clients This test covers requests that do not contain 1 of the parameters in their payloads. --- tests/units/test_0002_post_clients.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tests/units') diff --git a/tests/units/test_0002_post_clients.py b/tests/units/test_0002_post_clients.py index 590d6ba..3e0d4e5 100644 --- a/tests/units/test_0002_post_clients.py +++ b/tests/units/test_0002_post_clients.py @@ -16,5 +16,9 @@ class TestPostClientsMethods(unittest.TestCase): returned = requests.post(self.url, headers=self.headers, json=None) self.assertEqual(returned.status_code, 400) + def test_malformed_payload(self): + returned = requests.post(self.url, headers=self.headers, json={}) + self.assertEqual(returned.status_code, 400) + if __name__ == '__main__': unittest.main() -- cgit v1.2.3-18-g5258