add test_toom_cook.py to make importing be tested in CI
authorJacob Lifshay <programmerjake@gmail.com>
Thu, 13 Oct 2022 02:13:07 +0000 (19:13 -0700)
committerJacob Lifshay <programmerjake@gmail.com>
Thu, 13 Oct 2022 02:13:07 +0000 (19:13 -0700)
src/bigint_presentation_code/test_toom_cook.py [new file with mode: 0644]

diff --git a/src/bigint_presentation_code/test_toom_cook.py b/src/bigint_presentation_code/test_toom_cook.py
new file mode 100644 (file)
index 0000000..9851afb
--- /dev/null
@@ -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()