diff --git a/flashcards/tests/test_api.py b/flashcards/tests/test_api.py index 31cd64f..ed2cf22 100644 --- a/flashcards/tests/test_api.py +++ b/flashcards/tests/test_api.py @@ -34,12 +34,19 @@ class RegistrationTest(APITestCase): response = self.client.post(url, data, format='json') self.assertEqual(response.status_code, HTTP_201_CREATED) - data = {'email': 'none@none.com', 'password': '1234'} response = self.client.post('/api/login', data, format='json') self.assertEqual(response.status_code, HTTP_200_OK) + data = {'email': 'none@none.com'} + response = self.client.post(url, data, format='json') + self.assertContains(response, 'Password is required', status_code=400) + + data = {'password': '1234'} + response = self.client.post(url, data, format='json') + self.assertContains(response, 'Email is required', status_code=400) + class ProfileViewTest(APITestCase): def test_get_me(self): url = '/api/users/me'