(base_app)
| 3518 | |
| 3519 | |
| 3520 | def test_parseline_quoted(base_app) -> None: |
| 3521 | statement = " command with 'partially completed quotes " |
| 3522 | command, args, line = base_app.parseline(statement) |
| 3523 | assert command == "command" |
| 3524 | assert args == "with 'partially completed quotes " |
| 3525 | assert line == statement.lstrip() |
| 3526 | |
| 3527 | |
| 3528 | def test_onecmd_raw_str_continue(outsim_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…