Now that the automatic OCR, parsing and file metadata processing are turned off by the test setting file, these overrides in the tests are not needed anymore. Signed-off-by: Roberto Rosario <Roberto.Rosario@mayan-edms.com>
14 lines
393 B
Python
14 lines
393 B
Python
from __future__ import unicode_literals
|
|
|
|
from mayan.apps.common.tests import BaseTestCase, GenericViewTestCase
|
|
|
|
from .mixins import DocumentTestMixin
|
|
|
|
|
|
class GenericDocumentTestCase(DocumentTestMixin, BaseTestCase):
|
|
"""Base test case when testing models or classes"""
|
|
|
|
|
|
class GenericDocumentViewTestCase(DocumentTestMixin, GenericViewTestCase):
|
|
"""Base test case when testing views"""
|