We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 968bdf9 commit 7944a2dCopy full SHA for 7944a2d
1 file changed
test_add.py
@@ -1,4 +1,6 @@
1
# sum of numbers
2
+def addition(a,b):
3
+ return a+b
4
def test_addition_basic(a,b):
5
assert addition(2,3)==5
6
assert addition(-1,1)==0
@@ -14,3 +16,4 @@ def test_addition_basic(a,b):
14
16
15
17
18
19
+
0 commit comments