(loop)
| 159 | |
| 160 | |
| 161 | def test_default_loop(loop): |
| 162 | asyncio.set_event_loop(loop) |
| 163 | req = ClientRequest('get', 'http://python.org/') |
| 164 | assert req.loop is loop |
| 165 | |
| 166 | |
| 167 | def test_default_headers_useragent(make_request): |
nothing calls this directly
no test coverage detected