fix: resolve docs conflict for PR #453 after #452

Merge both audit (#431) and worktree hygiene (#432) route/docs lines.
This commit is contained in:
2026-07-09 09:22:53 -04:00
64 changed files with 5854 additions and 207 deletions
+6 -1
View File
@@ -35,12 +35,17 @@ class TestWebuiSkeleton(unittest.TestCase):
self.assertIn("Runtime health", response.text)
def test_route_stubs_render(self):
for path in ("/audit",):
for path in ("/worktrees",):
with self.subTest(path=path):
response = self.client.get(path)
self.assertEqual(response.status_code, 200)
self.assertIn("child issue", response.text.lower())
def test_audit_is_implemented(self):
response = self.client.get("/audit")
self.assertEqual(response.status_code, 200)
self.assertIn("Report audit", response.text)
def test_prompts_is_implemented(self):
response = self.client.get("/prompts")
self.assertEqual(response.status_code, 200)