drone-tutorial-python/test_good.py

8 lines
144 B
Python
Raw Normal View History

2019-02-02 23:21:23 +00:00
# Adapted from the test_sample.py example in the pytest documentation
def inc(x):
return x + 1
def test_answer():
assert inc(3) == 4