(self, reactor_pytest: str)
| 23 | class TestAsyncio: |
| 24 | @coroutine_test |
| 25 | async def test_is_asyncio_available(self, reactor_pytest: str) -> None: |
| 26 | # the result should depend only on the pytest --reactor argument |
| 27 | assert is_asyncio_available() == (reactor_pytest != "default") |
| 28 | |
| 29 | |
| 30 | @pytest.mark.only_asyncio |
nothing calls this directly
no test coverage detected