def test_quote_not_current(self): mock_event = MagicMock() mock_event.cli.current_buffer.document.current_char = "n" quote(mock_event) mock_event.cli.current_buffer.insert_text.assert_has_calls([call("\""), call("\"", move_cursor=False)])
def test_quote_not_current(binder): binder.cli.current_buffer.document.current_char = "n" quote(binder) binder.cli.current_buffer.insert_text.assert_has_calls([call("\""), call("\"", move_cursor=False)])
def test_quote_current(self): mock_event = MagicMock() mock_event.cli.current_buffer.document.current_char = "\"" quote(mock_event) mock_event.cli.current_buffer.cursor_right.assert_called_once_with()
def test_quote_current(binder): binder.cli.current_buffer.document.current_char = "\"" quote(binder) binder.cli.current_buffer.cursor_right.assert_called_once_with()