(reason, s, comp)
| 402 | assert_in(Completion(start, end, comp), completions, reason) |
| 403 | |
| 404 | def _test_not_complete(reason, s, comp): |
| 405 | l = len(s) |
| 406 | with provisionalcompleter(): |
| 407 | ip.Completer.use_jedi = True |
| 408 | completions = set(ip.Completer.completions(s, l)) |
| 409 | ip.Completer.use_jedi = False |
| 410 | assert_not_in(Completion(l, l, comp), completions, reason) |
| 411 | |
| 412 | import jedi |
| 413 |
nothing calls this directly
no test coverage detected