From d8bcc626ccc2b7edd4b71eb545ed7e42d3170154 Mon Sep 17 00:00:00 2001 From: Phuong Tran Date: Fri, 1 May 2015 16:23:17 -0400 Subject: [PATCH] More tests for create account --- flashcards/tests/test_api.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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' -- 1.9.1