trace_commentor/tests/test_definitions.py
2024-04-19 14:54:32 +08:00

14 lines
174 B
Python

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