summaryrefslogtreecommitdiff
path: root/09/test.py
diff options
context:
space:
mode:
Diffstat (limited to '09/test.py')
-rwxr-xr-x09/test.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/09/test.py b/09/test.py
new file mode 100755
index 0000000..932c12b
--- /dev/null
+++ b/09/test.py
@@ -0,0 +1,22 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class Examples(unittest.TestCase):
+ def test_example1(self):
+ lines = [
+ "London to Dublin = 464",
+ "London to Belfast = 518",
+ "Dublin to Belfast = 141"
+ ]
+ self.assertEqual(main.solve_partn(1, lines), 605)
+ self.assertEqual(main.solve_partn(2, lines), 982)
+
+
+
+if __name__ == "__main__":
+ unittest.main()