(tmp_path, monkeypatch)
| 75 | |
| 76 | |
| 77 | def test_plugin_manifests_missing(tmp_path, monkeypatch): |
| 78 | monkeypatch.chdir(tmp_path) |
| 79 | |
| 80 | ok, message = check_plugin_manifests() |
| 81 | |
| 82 | assert ok is False |
| 83 | assert "missing" in message |
| 84 | |
| 85 | |
| 86 | def test_screenshot_file_cleanup(): |
nothing calls this directly
no test coverage detected