()
| 565 | |
| 566 | |
| 567 | def test_editor_nonexistent_exception(): |
| 568 | with patch("subprocess.Popen", side_effect=OSError("not found")): |
| 569 | with pytest.raises(click.ClickException, match="not found"): |
| 570 | Editor(editor="nonexistent").edit_files(["f.txt"]) |
| 571 | |
| 572 | |
| 573 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…