summaryrefslogtreecommitdiff
path: root/13/test.py
diff options
context:
space:
mode:
Diffstat (limited to '13/test.py')
-rwxr-xr-x13/test.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/13/test.py b/13/test.py
new file mode 100755
index 0000000..7600159
--- /dev/null
+++ b/13/test.py
@@ -0,0 +1,30 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class ExamplesPart1(unittest.TestCase):
+ def test_example1(self):
+ lines = [
+ "Alice would gain 54 happiness units by sitting next to Bob.",
+ "Alice would lose 79 happiness units by sitting next to Carol.",
+ "Alice would lose 2 happiness units by sitting next to David.",
+ "Bob would gain 83 happiness units by sitting next to Alice.",
+ "Bob would lose 7 happiness units by sitting next to Carol.",
+ "Bob would lose 63 happiness units by sitting next to David.",
+ "Carol would lose 62 happiness units by sitting next to Alice.",
+ "Carol would gain 60 happiness units by sitting next to Bob.",
+ "Carol would gain 55 happiness units by sitting next to David.",
+ "David would gain 46 happiness units by sitting next to Alice.",
+ "David would lose 7 happiness units by sitting next to Bob.",
+ "David would gain 41 happiness units by sitting next to Carol."
+ ]
+ self.assertEqual(main.solve_part1(lines), 330)
+
+
+
+if __name__ == "__main__":
+ unittest.main()