(parser)
| 853 | |
| 854 | |
| 855 | def test_parse_command_only_multiline(parser) -> None: |
| 856 | line = 'multiline with partially "open quotes and no terminator' |
| 857 | partial_statement = parser.parse_command_only(line) |
| 858 | assert partial_statement.command == "multiline" |
| 859 | assert partial_statement.args == 'with partially "open quotes and no terminator' |
| 860 | assert partial_statement.raw == line |
| 861 | assert partial_statement.multiline_command |
| 862 | assert partial_statement.command_and_args == line |
| 863 | |
| 864 | |
| 865 | def test_statement_initialization() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…