From b3bc459423188383d9caeb0803934423d0d010d4 Mon Sep 17 00:00:00 2001 From: sysadmin <913443@dadeschools.net> Date: Thu, 9 Jul 2026 09:23:19 -0400 Subject: [PATCH] fix: drop obsolete worktrees stub assertion after #432 implement --- tests/test_webui_skeleton.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/test_webui_skeleton.py b/tests/test_webui_skeleton.py index a693894..8c6dd46 100644 --- a/tests/test_webui_skeleton.py +++ b/tests/test_webui_skeleton.py @@ -34,13 +34,6 @@ class TestWebuiSkeleton(unittest.TestCase): self.assertEqual(response.status_code, 200) self.assertIn("Runtime health", response.text) - def test_route_stubs_render(self): - 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) @@ -61,16 +54,12 @@ class TestWebuiSkeleton(unittest.TestCase): self.assertEqual(response.status_code, 200) self.assertIn("Worktree hygiene", response.text) - def test_extra_stub_routes(self): - self.assertEqual(self.client.get("/leases").status_code, 200) def test_leases_is_implemented(self): response = self.client.get("/leases") self.assertEqual(response.status_code, 200) self.assertIn("Leases", response.text) self.assertIn("Collision warnings", response.text) - def test_extra_stub_routes(self): - self.assertEqual(self.client.get("/worktrees").status_code, 200) def test_post_is_rejected(self): response = self.client.post("/health")