Files
mayan-edms/mayan/apps/document_states/tests/test_actions.py
Roberto Rosario ec223dd54d PEP8 cleanups.
Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
2017-08-27 02:08:39 -04:00

17 lines
434 B
Python

from __future__ import unicode_literals
from documents.tests.test_models import GenericDocumentTestCase
class ActionTestCase(GenericDocumentTestCase):
def setUp(self):
super(ActionTestCase, self).setUp()
class MockWorkflowInstance(object):
document = self.document
class MockEntryLog(object):
workflow_instance = MockWorkflowInstance()
self.entry_log = MockEntryLog()