(self, request_object, expected_curl_command)
| 325 | |
| 326 | class TestRequestToCurl: |
| 327 | def _test_request(self, request_object, expected_curl_command): |
| 328 | curl_command = request_to_curl(request_object) |
| 329 | assert curl_command == expected_curl_command |
| 330 | |
| 331 | def test_get(self): |
| 332 | request_object = Request("https://www.example.com") |
no test coverage detected