Consolidate some document indexing test code into a new mixin.

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2018-10-05 19:42:05 -04:00
parent fc82f64705
commit 598312c4d3
3 changed files with 37 additions and 42 deletions

View File

@@ -0,0 +1,14 @@
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)