30 lines
678 B
Python
30 lines
678 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
import os
|
|
import sys
|
|
import unittest
|
|
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..', '..'))
|
|
|
|
from .TaskSpecTest import TaskSpecTest
|
|
from SpiffWorkflow.specs.Join import Join
|
|
|
|
|
|
class JoinTest(TaskSpecTest):
|
|
CORRELATE = Join
|
|
|
|
def create_instance(self):
|
|
if 'testtask' in self.wf_spec.task_specs:
|
|
del self.wf_spec.task_specs['testtask']
|
|
|
|
return Join(self.wf_spec,
|
|
'testtask',
|
|
description='foo')
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromTestCase(JoinTest)
|
|
if __name__ == '__main__':
|
|
unittest.TextTestRunner(verbosity=2).run(suite())
|