(parser)
| 649 | |
| 650 | |
| 651 | def test_parse_unclosed_quotes(parser) -> None: |
| 652 | with pytest.raises(exceptions.Cmd2ShlexError): |
| 653 | _ = parser.tokenize("command with 'unclosed quotes") |
| 654 | |
| 655 | |
| 656 | def test_empty_statement_raises_exception() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…