(make_request)
| 128 | |
| 129 | |
| 130 | def test_request_info(make_request) -> None: |
| 131 | req = make_request("get", "http://python.org/") |
| 132 | assert req.request_info == aiohttp.RequestInfo( |
| 133 | URL("http://python.org/"), "GET", req.headers, URL("http://python.org/") |
| 134 | ) |
| 135 | |
| 136 | |
| 137 | def test_request_info_with_fragment(make_request) -> None: |
nothing calls this directly
no test coverage detected