Commit 7dc8c56e authored by Stefan Behnel's avatar Stefan Behnel

extended test case

parent 64c5b254
......@@ -11,6 +11,9 @@ def test_exec_tuples_with_in(d1, d2):
exec(1,2,3) in d1
exec(1,2) in d1, d2
exec(1,2,3) in d1, d2
exec() in d1, d2
exec(1,) in d1, d2
exec(1,2,3,4) in d1, d2
_ERRORS = """
......@@ -21,4 +24,10 @@ _ERRORS = """
11:16: tuple variant of exec does not support additional 'in' arguments
12:14: tuple variant of exec does not support additional 'in' arguments
13:16: tuple variant of exec does not support additional 'in' arguments
14:4: expected tuple of length 2 or 3, got length 0
14:11: tuple variant of exec does not support additional 'in' arguments
15:4: expected tuple of length 2 or 3, got length 1
15:13: tuple variant of exec does not support additional 'in' arguments
16:4: expected tuple of length 2 or 3, got length 4
16:18: tuple variant of exec does not support additional 'in' arguments
"""
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment