Skip to content

Instantly share code, notes, and snippets.

@HectorTorres
Created January 11, 2023 18:59
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 HectorTorres/d9068b26dd6e899b7c3bd81ec7f392db to your computer and use it in GitHub Desktop.
Save HectorTorres/d9068b26dd6e899b7c3bd81ec7f392db to your computer and use it in GitHub Desktop.
def function_square(a):
return a*a
def test_function_square():
assert function_square(2) == 5
test_function_square()
#Run the file
#pytest test_pytest_01.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment