update accounts/tests/test_password_change_view.py add function

test_password_change_view_get
This commit is contained in:
Trent Palmer 2021-04-21 13:08:21 -07:00
parent 68f08b2773
commit b1ace1c6ba
1 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,13 @@ class PasswordChangeViewTestCase(TestCase):
user_a.save()
Account.objects.create(user=user_a, twitter_handle='@user_a')
def test_password_change_view_get(self):
self.client.login(username='user_a', password='password123456')
response = self.client.get(reverse('accounts:password_change'))
self.assertEquals(response.status_code, 200)
self.assertTemplateUsed(response, 'base_form.html')
self.assertEquals(response.request['PATH_INFO'], '/accounts/password-change/')
def test_password_change_view_no_login(self):
response = self.client.post(reverse('accounts:password_change'), {
'old_password': 'password123456',