summaryrefslogtreecommitdiff
path: root/15/test.py
diff options
context:
space:
mode:
authorPrefetch2022-12-31 22:21:39 +0100
committerPrefetch2022-12-31 22:21:39 +0100
commit68615a9ad2c942254135cffb00cf25a84a3b1356 (patch)
tree1ed3131f673207b2ef0bdaee3ee98bb68d6640ca /15/test.py
Initial commit
Diffstat (limited to '15/test.py')
-rwxr-xr-x15/test.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/15/test.py b/15/test.py
new file mode 100755
index 0000000..fb71ad8
--- /dev/null
+++ b/15/test.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class Examples(unittest.TestCase):
+ def test_example1(self):
+ lines = [
+ "Butterscotch: capacity -1, durability -2, flavor 6, texture 3, calories 8",
+ "Cinnamon: capacity 2, durability 3, flavor -2, texture -1, calories 3",
+ "Dummy: capacity 0, durability 0, flavor 0, texture 0, calories 0",
+ "Dummy: capacity 0, durability 0, flavor 0, texture 0, calories 0"
+ ]
+ self.assertEqual(main.solve_partn(1, lines), 62842880)
+ self.assertEqual(main.solve_partn(2, lines), 57600000)
+
+
+
+if __name__ == "__main__":
+ unittest.main()