Skip to content
Snippets Groups Projects
Commit 491d6091 authored by nabr's avatar nabr
Browse files

Added nice example

parent f5220927
No related branches found
No related tags found
No related merge requests found
def add(a, b):
return a + b
def test_add():
assert add(2, 3) == 5
assert add('space', 'ship') == 'spaceship'
def subtract(a, b):
return a + b # <--- fix this in step 8
# uncomment the following test in step 5
#def test_subtract():
# assert subtract(2, 3) == -1
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment