(parser)
| 112 | |
| 113 | |
| 114 | def test_tokenize_unclosed_quotes(parser) -> None: |
| 115 | with pytest.raises(exceptions.Cmd2ShlexError): |
| 116 | _ = parser.tokenize('command with "unclosed quotes') |
| 117 | |
| 118 | |
| 119 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…