(completer, complete_event)
| 26 | |
| 27 | |
| 28 | def test_select_keyword_completion(completer, complete_event): |
| 29 | text = "SEL" |
| 30 | position = len("SEL") |
| 31 | result = completions_to_set(completer.get_completions(Document(text=text, cursor_position=position), complete_event)) |
| 32 | assert result == completions_to_set([Completion(text="SELECT", start_position=-3)]) |
| 33 | |
| 34 | |
| 35 | def test_function_name_completion(completer, complete_event): |
nothing calls this directly
no test coverage detected