From da867a7528889e6cd8ec5a8f254f3445bb8372a1 Mon Sep 17 00:00:00 2001 From: RKs Date: Sat, 19 Oct 2019 21:26:31 +0530 Subject: [PATCH] Hello pytest --- hello_pytest.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 hello_pytest.py 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 +