This commit is contained in:
Yuyao Huang
2024-04-19 19:09:06 +08:00
parent 6e8c8e1998
commit 29c08c08e4
5 changed files with 31 additions and 6 deletions
+17
View File
@@ -11,3 +11,20 @@ def test_constant():
def target():
1
''')
def test_tuple():
@Commentor("<return>")
def target():
a, b = 1, 2
asserteq_or_print(target(), '''
def target():
a, b = 1, 2
"""
========
1 : a
2 : b
"""
''')