Skip to content

Commit 823ecef

Browse files
author
Istemi Ekin Akkus
committed
move ASL Parallel Fun with Math test into asl_Parallel
1 parent 759c97c commit 823ecef

File tree

5 files changed

+14
-39
lines changed

5 files changed

+14
-39
lines changed
File renamed without changes.
File renamed without changes.

tests/asl_Parallel/test.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,17 @@ def test_parallel(self):
4848
test = MFNTest(test_name="Parallel", workflow_filename="workflow_parallel_state_test.json")
4949
test.exec_tests(testtuplelist)
5050

51+
def test_parallel_fun_with_math(self):
52+
""" creates and executes the parallel fun with math workflow from the ASL description """
53+
testtuplelist = []
54+
55+
event = [3, 2]
56+
expectedResponse = [5, 1]
57+
testtuplelist.append((json.dumps(event), json.dumps(expectedResponse)))
58+
59+
event = [5, 1]
60+
expectedResponse = [6, 4]
61+
testtuplelist.append((json.dumps(event), json.dumps(expectedResponse)))
62+
63+
test = MFNTest(test_name="Parallel Fun with Math", workflow_filename="workflow_parallel_state_fun_test.json")
64+
test.exec_tests(testtuplelist)

tests/asl_Parallel_Fun_With_Math/test.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)