Test moving the cursor right.
(self)
| 1407 | self.mock_win.reset_mock() |
| 1408 | |
| 1409 | def test_move_right(self): |
| 1410 | """Test moving the cursor right.""" |
| 1411 | self.mock_win.reset_mock() |
| 1412 | self.textbox.do_command(curses.KEY_RIGHT) |
| 1413 | self.mock_win.move.assert_called_with(1, 2) |
| 1414 | self.mock_win.reset_mock() |
| 1415 | |
| 1416 | def test_move_left_and_right(self): |
| 1417 | """Test moving the cursor left and then right.""" |
nothing calls this directly
no test coverage detected