9 lines
126 B
Python
9 lines
126 B
Python
|
|
def test_assert():
|
|
assert 1
|
|
|
|
|
|
def test_constants(constants):
|
|
assert constants.ONE == 1
|
|
assert constants.TWO == 2
|