Compare commits

...

1 Commits

Author SHA1 Message Date
Matthias Neeracher
44a0c2788d Add failing test
Some checks failed
continuous-integration/drone/push Build is failing
2019-02-03 03:39:10 +01:00

7
test_bad.py Normal file
View File

@ -0,0 +1,7 @@
# Adapted from the test_sample.py example in the pytest documentation
def inc(x):
return x - 1
def test_answer():
assert inc(3) == 4