def test_disable_user_account(self):
     """
     Tests Support View to disable the user account
     """
     test_user = UserFactory(
         username='******', email='*****@*****.**', password='******'
     )
     url = reverse('support:manage_user_detail') + test_user.username
     response = self.client.post(url, data={
         'username_or_email': test_user.username,
         'comment': 'Test comment'
     })
     data = json.loads(response.content.decode('utf-8'))
     assert data['success_msg'] == 'User Disabled Successfully'
     test_user = User.objects.get(username=test_user.username, email=test_user.email)
     assert test_user.has_usable_password() is False