Rename workflow action test modules

Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
This commit is contained in:
Roberto Rosario
2019-09-23 13:23:19 -04:00
parent 11898a36fe
commit 8322bd3a27
4 changed files with 1 additions and 5 deletions

View File

@@ -0,0 +1,16 @@
from __future__ import unicode_literals
from mayan.apps.documents.tests.test_models import GenericDocumentTestCase
class ActionTestCase(GenericDocumentTestCase):
def setUp(self):
super(ActionTestCase, self).setUp()
class MockWorkflowInstance(object):
document = self.test_document
class MockEntryLog(object):
workflow_instance = MockWorkflowInstance()
self.entry_log = MockEntryLog()