(self)
| 58 | self.assertEqual(expected, result) |
| 59 | |
| 60 | def test_end_of_line(self): |
| 61 | expected = (len(self._line), self._line) |
| 62 | for i in range(len(self._line)): |
| 63 | result = end_of_line(i, self._line) |
| 64 | self.assertEqual(expected, result) |
| 65 | |
| 66 | def test_forward_word(self): |
| 67 | line = "going from here to_here" |
nothing calls this directly
no test coverage detected