Skip to content

Instantly share code, notes, and snippets.

@ozgurozkok
Created March 20, 2023 22:09
Show Gist options
  • Save ozgurozkok/07a89fa50ed57a21f4e31d457ac95394 to your computer and use it in GitHub Desktop.
Save ozgurozkok/07a89fa50ed57a21f4e31d457ac95394 to your computer and use it in GitHub Desktop.
def add_numbers(a, b):
return a + b
def test_add_numbers():
assert add_numbers(2, 3) == 5
assert add_numbers(5, 7) == 12
assert add_numbers(10, -3) == 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment