(legacy_term_mock)
| 67 | |
| 68 | |
| 69 | def test_control_home(legacy_term_mock): |
| 70 | buffer = [Segment("", None, [(ControlType.HOME,)])] |
| 71 | |
| 72 | legacy_windows_render(buffer, legacy_term_mock) |
| 73 | |
| 74 | legacy_term_mock.move_cursor_to.assert_called_once_with(WindowsCoordinates(0, 0)) |
| 75 | |
| 76 | |
| 77 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected