Test moving the cursor down.
(self)
| 1430 | self.mock_win.reset_mock() |
| 1431 | |
| 1432 | def test_move_down(self): |
| 1433 | """Test moving the cursor down.""" |
| 1434 | self.mock_win.reset_mock() |
| 1435 | self.textbox.do_command(curses.KEY_DOWN) |
| 1436 | self.mock_win.move.assert_called_with(2, 1) |
| 1437 | self.mock_win.reset_mock() |
| 1438 | |
| 1439 | |
| 1440 | if __name__ == '__main__': |
nothing calls this directly
no test coverage detected