summaryrefslogtreecommitdiff
path: root/20/test.py
diff options
context:
space:
mode:
Diffstat (limited to '20/test.py')
-rwxr-xr-x20/test.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/20/test.py b/20/test.py
new file mode 100755
index 0000000..15ac2f9
--- /dev/null
+++ b/20/test.py
@@ -0,0 +1,16 @@
+#!/usr/bin/python
+
+import unittest
+
+import main
+
+
+
+class ExamplesPart1(unittest.TestCase):
+ def test_example1(self):
+ self.assertEqual(main.solve_partn(1, 150), 8)
+
+
+
+if __name__ == "__main__":
+ unittest.main()