(default_parser, line, tokens)
| 86 | ], |
| 87 | ) |
| 88 | def test_tokenize_default(default_parser, line, tokens) -> None: |
| 89 | tokens_to_test = default_parser.tokenize(line) |
| 90 | assert tokens_to_test == tokens |
| 91 | |
| 92 | |
| 93 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…