13 lines
172 B
Python
13 lines
172 B
Python
'''
|
|
def test_valid_1():
|
|
# To see if it's ignored
|
|
assert True
|
|
|
|
def test_broken(
|
|
# syntax error
|
|
|
|
def test_valid_2():
|
|
# To see if it's ignored
|
|
assert True
|
|
'''
|