(response: H3Response)
| 686 | |
| 687 | async def _test_echo(client: H3Client, strict: bool) -> None: |
| 688 | def assert_no_data(response: H3Response): |
| 689 | if strict: |
| 690 | assert response.data is None |
| 691 | else: |
| 692 | assert not response.data |
| 693 | |
| 694 | headers = [ |
| 695 | (b":scheme", b"https"), |
no outgoing calls
no test coverage detected
searching dependent graphs…