()
| 54 | |
| 55 | @pytest.mark.skipif(not have_quic, reason="requires aioquic") |
| 56 | def test_basic_asyncio(): |
| 57 | dns.asyncbackend.set_default_backend("asyncio") |
| 58 | for address in addresses: |
| 59 | with Server(address=address) as server: |
| 60 | port = server.doq_address[1] |
| 61 | asyncio.run(amain(address, port)) |
| 62 | |
| 63 | |
| 64 | try: |