(kwargs)
| 2703 | ), |
| 2704 | ) |
| 2705 | def test_prepared_copy(kwargs): |
| 2706 | p = PreparedRequest() |
| 2707 | if kwargs: |
| 2708 | p.prepare(**kwargs) |
| 2709 | copy = p.copy() |
| 2710 | for attr in ("method", "url", "headers", "_cookies", "body", "hooks"): |
| 2711 | assert getattr(p, attr) == getattr(copy, attr) |
| 2712 | |
| 2713 | |
| 2714 | def test_urllib3_retries(httpbin): |
nothing calls this directly
no test coverage detected