19 lines
410 B
Python
19 lines
410 B
Python
""" Tests for commerce views. """
|
|
|
|
from common.djangoapps.student.tests.factories import UserFactory
|
|
|
|
|
|
TEST_PASSWORD = "Password1234"
|
|
|
|
|
|
class UserMixin:
|
|
""" Mixin for tests involving users. """
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
self.user = UserFactory()
|
|
|
|
def _login(self):
|
|
""" Log into LMS. """
|
|
self.client.login(username=self.user.username, password=TEST_PASSWORD)
|