summaryrefslogtreecommitdiff
path: root/24/test.py
diff options
context:
space:
mode:
Diffstat (limited to '24/test.py')
-rwxr-xr-x24/test.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/24/test.py b/24/test.py
new file mode 100755
index 0000000..2c2655c
--- /dev/null
+++ b/24/test.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class Examples(unittest.TestCase):
+ def test_example1(self):
+ masses = [1, 2, 3, 4, 5, 7, 8, 9, 10, 11]
+ self.assertEqual(main.solve_partn(1, masses), 99)
+ self.assertEqual(main.solve_partn(2, masses), 44)
+
+
+
+if __name__ == "__main__":
+ unittest.main()