(self)
| 464 | """Route-level tests for /manpage endpoints.""" |
| 465 | |
| 466 | def setUp(self): |
| 467 | self.app = create_app() |
| 468 | _use_store(self.app, create_test_store()) |
| 469 | self.app.config["TESTING"] = True |
| 470 | self.client = self.app.test_client() |
| 471 | |
| 472 | # -- Single manpage view -- |
| 473 |
nothing calls this directly
no test coverage detected