summaryrefslogtreecommitdiff
path: root/18/test.py
diff options
context:
space:
mode:
Diffstat (limited to '18/test.py')
-rwxr-xr-x18/test.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/18/test.py b/18/test.py
new file mode 100755
index 0000000..954e2b3
--- /dev/null
+++ b/18/test.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class Examples(unittest.TestCase):
+ def test_example1(self):
+ lines = [
+ ".#.#.#",
+ "...##.",
+ "#....#",
+ "..#...",
+ "#.#..#",
+ "####.."
+ ]
+ self.assertEqual(main.solve_partn(1, lines, 4), 4)
+ self.assertEqual(main.solve_partn(2, lines, 5), 17)
+
+
+
+if __name__ == "__main__":
+ unittest.main()