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

  1. from django.contrib.auth.models import User
  2. from django.test import TestCase
  3. class BaseTestCase(TestCase):
  4. def setUp(self):
  5. super(BaseTestCase, self).setUp()
  6. self.alice = User(username="alice", email="[email protected]")
  7. self.alice.set_password("password")
  8. self.alice.save()