(legacy_term_mock)
| 118 | |
| 119 | |
| 120 | def test_control_hide_cursor(legacy_term_mock): |
| 121 | buffer = [Segment("", None, [(ControlType.HIDE_CURSOR,)])] |
| 122 | |
| 123 | legacy_windows_render(buffer, legacy_term_mock) |
| 124 | |
| 125 | legacy_term_mock.hide_cursor.assert_called_once_with() |
| 126 | |
| 127 | |
| 128 | def test_control_cursor_move_to_column(legacy_term_mock): |
nothing calls this directly
no test coverage detected