(self, tmp_path)
| 167 | load_auth_config(cfg) |
| 168 | |
| 169 | def test_not_object_raises(self, tmp_path): |
| 170 | cfg = tmp_path / "auth.json" |
| 171 | cfg.write_text("[]") |
| 172 | with pytest.raises(ValueError, match="JSON object"): |
| 173 | load_auth_config(cfg) |
| 174 | |
| 175 | def test_missing_providers_raises(self, tmp_path): |
| 176 | cfg = tmp_path / "auth.json" |
nothing calls this directly
no test coverage detected