(mock_which)
| 171 | |
| 172 | @patch("shutil.which", return_value=None) |
| 173 | def test_lazy_load_no_binary_raises(mock_which): |
| 174 | loader = _make_loader() |
| 175 | with pytest.raises(ImportError, match="plasmate is required"): |
| 176 | list(loader.lazy_load()) |
| 177 | |
| 178 | |
| 179 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected