Files
mayan-edms/mayan/apps/control_codes/tests/control_codes.py
Roberto Rosario 9448b148e9 Improve tests, update migrations
Signed-off-by: Roberto Rosario <roberto.rosario@mayan-edms.com>
2019-09-05 22:18:59 -04:00

16 lines
281 B
Python

from __future__ import unicode_literals
from ..classes import ControlCode
class ControlCodeTest(ControlCode):
arguments = ('argument_1',)
label = 'Test'
name = 'test'
def execute(self, context):
pass
ControlCode.register(control_code=ControlCodeTest)