(self)
| 71 | """Route-level tests for the unified explain_router.""" |
| 72 | |
| 73 | def setUp(self): |
| 74 | self.app = create_app() |
| 75 | _use_store(self.app, create_test_store()) |
| 76 | self.app.config["TESTING"] = True |
| 77 | self.client = self.app.test_client() |
| 78 | |
| 79 | # -- Backwards-compatible routes (no distro in URL) -- |
| 80 |
nothing calls this directly
no test coverage detected