From 68615a9ad2c942254135cffb00cf25a84a3b1356 Mon Sep 17 00:00:00 2001 From: Prefetch Date: Sat, 31 Dec 2022 22:21:39 +0100 Subject: Initial commit --- 10/test.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100755 10/test.py (limited to '10/test.py') diff --git a/10/test.py b/10/test.py new file mode 100755 index 0000000..a311b2e --- /dev/null +++ b/10/test.py @@ -0,0 +1,28 @@ +#!/usr/bin/python + +import unittest + +import main + + + +class ExamplesPart1(unittest.TestCase): + def test_example1(self): + self.assertEqual(main.play_round("1"), "11") + + def test_example2(self): + self.assertEqual(main.play_round("11"), "21") + + def test_example3(self): + self.assertEqual(main.play_round("21"), "1211") + + def test_example4(self): + self.assertEqual(main.play_round("1211"), "111221") + + def test_example5(self): + self.assertEqual(main.play_round("111221"), "312211") + + + +if __name__ == "__main__": + unittest.main() -- cgit v1.2.3