Test moving the cursor left.
(self)
| 1400 | self.mock_win.reset_mock() |
| 1401 | |
| 1402 | def test_move_left(self): |
| 1403 | """Test moving the cursor left.""" |
| 1404 | self.mock_win.reset_mock() |
| 1405 | self.textbox.do_command(curses.KEY_LEFT) |
| 1406 | self.mock_win.move.assert_called_with(1, 0) |
| 1407 | self.mock_win.reset_mock() |
| 1408 | |
| 1409 | def test_move_right(self): |
| 1410 | """Test moving the cursor right.""" |
nothing calls this directly
no test coverage detected