Cosplay/nhf/test.py

13 lines
277 B
Python
Raw Normal View History

2024-06-20 23:29:18 -07:00
import unittest
import nhf.joints
class TestJoints(unittest.TestCase):
def test_joints_hirth_assembly(self):
nhf.joints.hirth_assembly()
def test_joints_comma_assembly(self):
nhf.joints.comma_assembly()
if __name__ == '__main__':
unittest.main()