(**kwargs)
| 886 | nt.assert_not_in("'abc']", matches) |
| 887 | |
| 888 | def assert_completion(**kwargs): |
| 889 | _, matches = complete(**kwargs) |
| 890 | nt.assert_in("'abc'", matches) |
| 891 | nt.assert_not_in("'abc']", matches) |
| 892 | |
| 893 | # no completion after string closed, even if reopened |
| 894 | assert_no_completion(line_buffer="d['a'") |
nothing calls this directly
no outgoing calls
no test coverage detected