(apple, apricot, banana, carrot)
| 430 | class TestParameterNameCompletion(unittest.TestCase): |
| 431 | def test_set_of_params_returns_when_matches_found(self): |
| 432 | def func(apple, apricot, banana, carrot): |
| 433 | pass |
| 434 | |
| 435 | argspec = inspection.ArgSpec(*inspect.getfullargspec(func)) |
| 436 | funcspec = inspection.FuncProps("func", argspec, False) |