(token, expected)
| 387 | ], |
| 388 | ) |
| 389 | def test_token_is_lparen(token, expected): |
| 390 | context = _build_suggest_context(token, '', None, '', empty_identifier()) |
| 391 | assert _token_is_lparen(context) is expected |
| 392 | |
| 393 | |
| 394 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected