12 lines
165 B
Python
12 lines
165 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
|
|
|