From 25ee4ae32c917b5a16e174edeaa5ce490355b235 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 31 Oct 2024 16:21:59 -0400 Subject: [PATCH] Add test for basic math --- tests/test_basics.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 tests/test_basics.py diff --git a/tests/test_basics.py b/tests/test_basics.py new file mode 100644 index 0000000..ca7834a --- /dev/null +++ b/tests/test_basics.py @@ -0,0 +1,2 @@ +def test_basic_math(): + assert 1 + 1 == 2