From 83763852ec0823f0190543f3f6705527b4a4d1bb Mon Sep 17 00:00:00 2001 From: Rajendra Date: Tue, 19 Nov 2024 19:41:16 +0530 Subject: [PATCH] Create test_math.py --- test_math.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 test_math.py diff --git a/test_math.py b/test_math.py new file mode 100644 index 0000000..f213052 --- /dev/null +++ b/test_math.py @@ -0,0 +1,5 @@ +def add(a,b): + return a + b + +def test_add(): + assert add(2,3) == 5