14 lines
174 B
Python
14 lines
174 B
Python
from test_utils import *
|
|
|
|
|
|
def test_function_def():
|
|
|
|
@Commentor()
|
|
def target():
|
|
pass
|
|
|
|
asserteq_or_print(target(), '''
|
|
def target():
|
|
pass
|
|
''')
|