fix(cleanup): remove empty isolation stubs and dead symbols (P2-2 / C-3a / C-4)

This commit is contained in:
2026-08-16 10:26:36 +09:00
parent 5e519e2085
commit 971f14ad3f
9 changed files with 559 additions and 94 deletions
-10
View File
@@ -96,16 +96,6 @@ d['herdr_sessions'] = [
assert res.returncode != 0
assert "Duplicate running conversation ID" in res.stderr
def test_comp_create_isolation_folder_setup(mam_sandbox):
"""Verify that provision_isolation runs cleanly as a stub for global config isolation."""
lib_path = mam_sandbox / ".agents" / "skills" / "lib.sh"
iso_root = mam_sandbox / "iso_home_test"
cmd_str = f"source {lib_path} && provision_isolation claude {iso_root}"
res = subprocess.run(["bash", "-c", cmd_str], capture_output=True, text=True)
assert res.returncode == 0
assert res.stdout == ""
def test_comp_create_sqlite_tables_created(mam_sandbox, mock_herdr, mock_agents):
"""Verify that tables exist and contain records after a full create_session.sh run."""
script_path = mam_sandbox / ".agents" / "skills" / "multi-agent-mux-create" / "scripts" / "create_session.sh"