(base_app)
| 3510 | # don't need to test all the parsing logic here, because |
| 3511 | # parseline just calls StatementParser.parse_command_only() |
| 3512 | def test_parseline_empty(base_app) -> None: |
| 3513 | statement = "" |
| 3514 | command, args, line = base_app.parseline(statement) |
| 3515 | assert not command |
| 3516 | assert not args |
| 3517 | assert not line |
| 3518 | |
| 3519 | |
| 3520 | def test_parseline_quoted(base_app) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…