From d2249506e4b0358599278b234cfa8d37b415daac Mon Sep 17 00:00:00 2001 From: rohit Date: Wed, 26 Nov 2025 20:05:52 +0000 Subject: [PATCH] Add test_app.py --- test_app.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 test_app.py diff --git a/test_app.py b/test_app.py new file mode 100644 index 0000000..c7adae4 --- /dev/null +++ b/test_app.py @@ -0,0 +1,4 @@ +import app + +def test_add(): + assert app.add(2, 3) == 5