You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
314 B

from django.contrib.auth.models import User
from django.test import TestCase
class BaseTestCase(TestCase):
def setUp(self):
super(BaseTestCase, self).setUp()
self.alice = User(username="alice", email="[email protected]")
self.alice.set_password("password")
self.alice.save()