Compare commits

...

1 Commits

Author SHA1 Message Date
Matthias Neeracher 44a0c2788d Add failing test
continuous-integration/drone/push Build is failing Details
2019-02-03 03:39:10 +01:00
1 changed files with 7 additions and 0 deletions

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