Skip to content

Instantly share code, notes, and snippets.

@straz
straz / test_nda_icd.py
Created March 13, 2017 01:13
how to mock a test user in django - django/nada/tests/test_nda_icd.py
class NdaIcdTestCase(APITestCase):
TEST_USERNAME = 'testuser'
TEST_PASSWORD = '12345'
@classmethod
def setUpClass(cls):
'''Initialized once, before any class tests are run'''
cls.assertTrue(cls, is_empty(BOSS_CLASSES))
user = User.objects.create(username=cls.TEST_USERNAME)
user.set_password(cls.TEST_PASSWORD)