()
| 2613 | |
| 2614 | |
| 2615 | def test_json_encodes_as_bytes(): |
| 2616 | # urllib3 expects bodies as bytes-like objects |
| 2617 | body = {"key": "value"} |
| 2618 | p = PreparedRequest() |
| 2619 | p.prepare(method="GET", url="https://www.example.com/", json=body) |
| 2620 | assert isinstance(p.body, bytes) |
| 2621 | |
| 2622 | |
| 2623 | def test_requests_are_updated_each_time(httpbin): |
nothing calls this directly
no test coverage detected