(page, request)
| 16 | ids=lambda imp: imp.__name__, |
| 17 | ) |
| 18 | async def display(page, request): |
| 19 | imp: BackendType = request.param |
| 20 | |
| 21 | # we do this to check that route priorities for each backend are correct |
| 22 | if imp is default_implementation: |
| 23 | url_prefix = "" |
| 24 | opts = None |
| 25 | else: |
| 26 | url_prefix = str(PATH_PREFIX) |
| 27 | opts = imp.Options(url_prefix=url_prefix) |
| 28 | |
| 29 | async with BackendFixture(implementation=imp, options=opts) as server: |
| 30 | async with DisplayFixture( |
| 31 | backend=server, |
| 32 | driver=page, |
| 33 | url_prefix=url_prefix, |
| 34 | ) as display: |
| 35 | yield display |
| 36 | |
| 37 | |
| 38 | async def test_display_simple_hello_world(display: DisplayFixture): |
nothing calls this directly
no test coverage detected