9 lines
309 B
Python
9 lines
309 B
Python
from __future__ import unicode_literals
|
|
|
|
TEST_WORKFLOW_LABEL = 'test workflow'
|
|
TEST_WORKFLOW_INITIAL_STATE_LABEL = 'test initial state'
|
|
TEST_WORKFLOW_INITIAL_STATE_COMPLETION = 33
|
|
TEST_WORKFLOW_STATE_LABEL = 'test state'
|
|
TEST_WORKFLOW_STATE_COMPLETION = 66
|
|
TEST_WORKFLOW_TRANSITION_LABEL = 'test transtition'
|