mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-18 13:31:08 +00:00
0892db6fa7
git-subtree-dir: SpiffWorkflow git-subtree-split: 63db3e45947ec66b8d0efc2c74064004f8ff482c
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import unittest
|
|
from SpiffWorkflow.bpmn.workflow import BpmnWorkflow
|
|
from tests.SpiffWorkflow.bpmn.BaseParallelTestCase import BaseParallelTestCase
|
|
|
|
__author__ = 'matth'
|
|
|
|
class ParallelLoopingAfterJoinTest(BaseParallelTestCase):
|
|
|
|
def setUp(self):
|
|
spec, subprocesses = self.load_workflow_spec(
|
|
'Test-Workflows/Parallel-Looping-After-Join.bpmn20.xml',
|
|
'Parallel Looping After Join')
|
|
self.workflow = BpmnWorkflow(spec, subprocesses)
|
|
|
|
def test1(self):
|
|
self._do_test(
|
|
['Go', '1', '2', '2A', '2B', '2 Done', ('Retry?', 'No'), 'Done'], save_restore=True)
|
|
|
|
def test2(self):
|
|
self._do_test(
|
|
['Go', '1', '2', '2A', '2B', '2 Done', ('Retry?', 'Yes'), 'Go',
|
|
'1', '2', '2A', '2B', '2 Done', ('Retry?', 'No'), 'Done'], save_restore=True)
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromTestCase(ParallelLoopingAfterJoinTest)
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner(verbosity=2).run(suite())
|