From: Jacob Lifshay Date: Thu, 13 Oct 2022 02:13:07 +0000 (-0700) Subject: add test_toom_cook.py to make importing be tested in CI X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=694ea1d8626706e9f0516885e2aa2bdc4c49bdd6;p=bigint-presentation-code.git add test_toom_cook.py to make importing be tested in CI --- diff --git a/src/bigint_presentation_code/test_toom_cook.py b/src/bigint_presentation_code/test_toom_cook.py new file mode 100644 index 0000000..9851afb --- /dev/null +++ b/src/bigint_presentation_code/test_toom_cook.py @@ -0,0 +1,10 @@ +import unittest +from bigint_presentation_code.toom_cook import Op + + +class TestToomCook(unittest.TestCase): + pass # no tests yet, just testing importing + + +if __name__ == "__main__": + unittest.main()