add test_toom_cook.py to make importing be tested in CI
[bigint-presentation-code.git] / src / bigint_presentation_code / test_toom_cook.py
1 import unittest
2 from bigint_presentation_code.toom_cook import Op
3
4
5 class TestToomCook(unittest.TestCase):
6 pass # no tests yet, just testing importing
7
8
9 if __name__ == "__main__":
10 unittest.main()