12 lines
308 B
Python
12 lines
308 B
Python
from __future__ import unicode_literals
|
|
|
|
from mayan.apps.common.tests import BaseTestCase
|
|
|
|
from .mixins import UserTestMixin
|
|
|
|
|
|
class UserTestCase(UserTestMixin, BaseTestCase):
|
|
def test_natural_keys(self):
|
|
self._create_test_user()
|
|
self._test_database_conversion('auth', 'user_management')
|