(name)
| 1293 | real_import = importlib.import_module |
| 1294 | |
| 1295 | def fake_import(name): |
| 1296 | if name == "agents.coldstart-agent.main": |
| 1297 | return FakeColdStartModule() |
| 1298 | return real_import(name) |
| 1299 | |
| 1300 | monkeypatch.setattr(master_coordinator, "ROLE_META_PATH", str(roles_path)) |
| 1301 | monkeypatch.setattr(master_coordinator.importlib, "import_module", fake_import) |
nothing calls this directly
no test coverage detected