(self)
| 211 | self.assertNotIn(b"/explain/ubuntu/26.04/2/dup", rv.data) |
| 212 | |
| 213 | def test_store_is_app_scoped(self): |
| 214 | with self.app.test_request_context("/"): |
| 215 | first = get_store() |
| 216 | with self.app.test_request_context("/"): |
| 217 | second = get_store() |
| 218 | |
| 219 | self.assertIs(first, second) |
| 220 | |
| 221 | |
| 222 | class TestDistroFallback(unittest.TestCase): |
nothing calls this directly
no test coverage detected