chore(conductor): Mark track 'MMA Core Engine Implementation' as complete and verify with Phase 6 tests

This commit is contained in:
2026-02-26 21:34:28 -05:00
parent 971202e21b
commit 8bb72e351d
12 changed files with 309 additions and 23 deletions

View File

@@ -24,26 +24,26 @@ from gui_2 import App
@pytest.fixture
def mock_config(tmp_path):
config_path = tmp_path / "config.toml"
config_path.write_text("[projects]
config_path.write_text("""[projects]
paths = []
active = ""
[ai]
provider = "gemini"
model = "model"
", encoding="utf-8")
""", encoding="utf-8")
return config_path
@pytest.fixture
def mock_project(tmp_path):
project_path = tmp_path / "project.toml"
project_path.write_text("[project]
project_path.write_text("""[project]
name = "test"
[discussion]
roles = ["User", "AI"]
active = "main"
[discussion.discussions.main]
history = []
", encoding="utf-8")
""", encoding="utf-8")
return project_path
def test_log_management_init(mock_config, mock_project, monkeypatch):