summaryrefslogtreecommitdiff
path: root/25/test.py
diff options
context:
space:
mode:
authorPrefetch2022-12-31 22:21:39 +0100
committerPrefetch2022-12-31 22:21:39 +0100
commit68615a9ad2c942254135cffb00cf25a84a3b1356 (patch)
tree1ed3131f673207b2ef0bdaee3ee98bb68d6640ca /25/test.py
Initial commit
Diffstat (limited to '25/test.py')
-rwxr-xr-x25/test.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/25/test.py b/25/test.py
new file mode 100755
index 0000000..5b34e3e
--- /dev/null
+++ b/25/test.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class ExamplesPart1(unittest.TestCase):
+ def test_example1(self):
+ until = (1, 6)
+ self.assertEqual(main.solve_part1(until), 33511524)
+
+
+
+if __name__ == "__main__":
+ unittest.main()