(reason, s, comp)
| 509 | assert Completion(start, end, comp) in completions, reason |
| 510 | |
| 511 | def _test_not_complete(reason, s, comp): |
| 512 | l = len(s) |
| 513 | with provisionalcompleter(): |
| 514 | ip.Completer.use_jedi = True |
| 515 | completions = set(ip.Completer.completions(s, l)) |
| 516 | ip.Completer.use_jedi = False |
| 517 | assert Completion(l, l, comp) not in completions, reason |
| 518 | |
| 519 | import jedi |
| 520 |
nothing calls this directly
no test coverage detected