An unclosed quote in the editor command raises ValueError.
()
| 937 | |
| 938 | |
| 939 | def test_editor_unclosed_quote(): |
| 940 | """An unclosed quote in the editor command raises ValueError.""" |
| 941 | with pytest.raises(ValueError, match="No closing quotation"): |
| 942 | Editor(editor='"unclosed').edit_files(["f.txt"]) |
| 943 | |
| 944 | |
| 945 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…