Beispiel #1
0
    def test_iterate_letters_with_newline(self):
        input = "test\n"
        expected = ["test"]

        output = list(draw.iterate_lines(input))
        self.assertEqual(expected, output)