summaryrefslogtreecommitdiff
path: root/11/test.py
diff options
context:
space:
mode:
Diffstat (limited to '11/test.py')
-rwxr-xr-x11/test.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/11/test.py b/11/test.py
new file mode 100755
index 0000000..b77bd46
--- /dev/null
+++ b/11/test.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class ExamplesPart1(unittest.TestCase):
+ def test_example1(self):
+ old = "abcdefgh"
+ new = "abcdffaa"
+ self.assertEqual(main.solve_part1(old), new)
+
+ def test_example2(self):
+ old = "ghijklmn"
+ new = "ghjaabcc"
+ self.assertEqual(main.solve_part1(old), new)
+
+
+
+if __name__ == "__main__":
+ unittest.main()