diff --git a/hello_pytest.py b/hello_pytest.py new file mode 100644 index 0000000..c04ea01 --- /dev/null +++ b/hello_pytest.py @@ -0,0 +1,11 @@ +import pytest + +# Hello Pytest + +def add(this,that): + result = this + that + return result + +def test_add(): + assert add(10,15) == 25 +