6 lines
99 B
Python
6 lines
99 B
Python
#!/usr/bin/env python
|
|
|
|
def test_two_plus_two_equals_four(): # <1>
|
|
assert 2 + 2 == 4 # <2>
|
|
|