def minus(a,b):
return a-b
# TODO: Replace examples and use TDD development by writing your own tests
# These are some of the methods available:
# test.expect(boolean, [optional] message)
test.assert_equals(minus(4,3),1)
# test.assert_not_equals(actual, expected, [optional] message)
# You can use Test.describe and Test.it to write BDD style test groupings
add
def add(a,b):
return 1
test.assert_equals(add(1,2), 1)
#test.assert_equals(add(3,7),10)