(parser, line, tokens)
| 107 | ], |
| 108 | ) |
| 109 | def test_tokenize(parser, line, tokens) -> None: |
| 110 | tokens_to_test = parser.tokenize(line) |
| 111 | assert tokens_to_test == tokens |
| 112 | |
| 113 | |
| 114 | def test_tokenize_unclosed_quotes(parser) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…