Files
mayan-edms/mayan/apps/document_indexing/tests/mixins.py
2018-10-05 21:45:49 -04:00

15 lines
383 B
Python

from __future__ import unicode_literals
from ..models import Index
from .literals import TEST_INDEX_LABEL
class DocumentIndexingTestMixin(object):
def _create_index(self):
# Create empty index
self.index = Index.objects.create(label=TEST_INDEX_LABEL)
# Add our document type to the new index
self.index.document_types.add(self.document_type)