Skip to content

Instantly share code, notes, and snippets.

@rahulbanerjee26
Created August 23, 2021 01:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rahulbanerjee26/3679ac560c34526e7b8dbd6e02de4c84 to your computer and use it in GitHub Desktop.
Save rahulbanerjee26/3679ac560c34526e7b8dbd6e02de4c84 to your computer and use it in GitHub Desktop.
from .helpers import add, divide, multiply, subtract
def test_add():
assert add(1, 2) == 3
def test_subtract():
assert subtract(2, 1) == 1
def test_multiply():
assert multiply(2, 2) == 4
def test_divide():
assert divide(4, 2) == 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment