Simple test to see how creating Kumites work
This function should return the sum of a and b.
(1,2) => 3
(5,9) => 14
(-3,8) => 5
def add(a, b):
return a + b
import codewars_test as test
# TODO Write tests
import solution # or from solution import example
# test.assert_equals(actual, expected, [optional] message)
@test.describe("Example")
def test_group():
@test.it("test case")
def test_case():
test.assert_equals(1 + 1, 2)
test.assert_equals(solution.add(1,2),3)
test.assert_equals(solution.add(5,9),14)
test.assert_equals(solution.add(-3,8),5)