(legacy_term_mock)
| 110 | |
| 111 | |
| 112 | def test_control_show_cursor(legacy_term_mock): |
| 113 | buffer = [Segment("", None, [(ControlType.SHOW_CURSOR,)])] |
| 114 | |
| 115 | legacy_windows_render(buffer, legacy_term_mock) |
| 116 | |
| 117 | legacy_term_mock.show_cursor.assert_called_once_with() |
| 118 | |
| 119 | |
| 120 | def test_control_hide_cursor(legacy_term_mock): |
nothing calls this directly
no test coverage detected