trace_commentor/tests/test_definitions.py
2024-04-19 18:08:34 +08:00

14 lines
184 B
Python

from test_utils import *
def test_function_def():
@Commentor("<return>")
def target():
pass
asserteq_or_print(target(), '''
def target():
pass
''')